﻿.category-box {
    background-color: #fff;
    padding: 24px;
    width: 100%;
    max-height: 100%;
    overflow: auto

}

::-webkit-scrollbar {
    background-color: #f5f5f5;
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #afafaf;
    border-radius: 8%;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #828282;
    }

.category-header {
    display: flex;
    justify-content: space-between;
}

.category-box h4 {
    color: #0ca9bd;
    font-weight: bolder;
    font-size: 27px;
}

.category-box hr {
    border-top: 1px solid rgb(33 33 33 / 10%);
}

.create-category-header::after {
    content: "";
    display: block;
    width: 8%;
    margin: 7px auto;
    height: 2px;
    background-color: #222;
}

input {
    outline: none;
    padding: 13px;
    border: 1px solid #eaeaea;
    box-shadow: 0px 2px 7px -5px #ccc;
    height: 41px;
    color: #737373;
}

.category-box input {
    margin-top: 10px;
    width: 40%;
    display: inline-block;
}

    input:focus {
        outline: none;
    }

    input[type="submit"] {
        display: block;
        margin: 20px auto;
        background-color: #21d7ef;
        color: #fff;
        padding:0px !important
    }

.fa-edit, .fa-list-alt, .fa-trash-alt {
    color: #0ca9bd
}

#delete {
    cursor: pointer
}

.category-box .subform {
    width: 50%
}

.category-box .subform .form-control {
    width: 40%;
    margin: auto
}

.category-box .subform .form-control:focus {
     border: 1px solid #ccc
}

.product-form {
    display: flex;
    flex-direction: column;
    align-items: center
}
