﻿body {
    background-color: #e3d5ca;
}

.food-main-conatiner {
    padding: 5px;
}

.food-conatiner {
    padding: 8px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background-color: #faf2ef;
}

table, tr, td, th {
    border-collapse: collapse;
    border: 1px solid #cb4c07;
    font-size: 16px;
    font-weight:600;
}

    tr:nth-child(even) {
        background-color: #fdd7ac;
    }

    table thead {
        background-color: #b3300b;
        color: white;
    }

        table thead tr th {
            font-weight: 400;
        }

#overlay-container {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
}

#overlay-body {
    width: 98vw;
    height: 98vh;
    top: 1%;
    left: 1%;
    right: 1%;
    bottom: 1%;
    z-index: 3;
}

input,
textarea,
select {
    font-size: 16px;
}

.highlight {
    background-color: yellow; /* Or any color you prefer */
    font-weight: bold;
}


#load {
    background-color: #1b1d21;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
}

.admin-login-header {
    font-size: 16px;
    padding: 10px 10px;
}

.admin-login-card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.admin-login-header h4 {
    margin: 10px 10px;
    color: #20272c;
}

.admin-main-login-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert-overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex; /* Added to center the inner div */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.child-food-conatiner {
    margin: 15px 0px;
}

    .child-food-conatiner .card-header {
        background-color: #fcca46;
    }

.main-conatiner-food-iteam {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#alert-overlay div {
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.textbox-container {
    padding: 10px;
}

.input-text-box-v1 {
    width: 100%;
    border: 0;
    padding: 4px;
    border-bottom: 2px solid #ffdf50;
}

    .input-text-box-v1:focus {
        outline: none;
        border-bottom: 2px solid #f6d87f;
        background-color: #fff7cf;
    }

.button-v1 {
    width: 100%;
    background-color: #ffdf50;
    border: 0;
    border-radius: 5px;
    color: #201912;
    font-size: 16px;
    padding: 5px;
    font-weight: 500;
}

    .button-v1:hover {
        backdrop-filter: opacity(30px);
        opacity: 0.7
    }

.button-v2 {
    width: 100%;
    background-color: #ffdf50;
    border: 0;
    border-radius: 5px;
    color: #201912;
    font-size: 16px;
    padding: 5px 13px;
    text-decoration: none;
    font-weight: 500;
}

    .button-v2:hover {
        backdrop-filter: opacity(30px);
        opacity: 0.7
    }



.common-card-css {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .common-card-css .card-header {
        font-weight: 500;
        background-color: #ffb703;
        color: #023047;
    }


.common-model-css {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .common-model-css .modal-header {
        font-weight: 500;
        background-color: #ffb703;
        color: #023047;
    }


.table-container {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border: 0;
}

.table-child-container {
    padding: 5px;
}

    .table-child-container .card {
        box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    }

        .table-child-container .card .card-footer {
            padding: 5px;
            background-color: #ffb703;
            color: #023047;
            font-weight: 500;
        }

        .table-child-container .card .card-body {
            padding: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

.hedader-conatiner {
    width: 400px;
    background-image: url('../files/icons/headingbackicon.png');
    background-repeat: no-repeat;
    background-size: 390px 70px;
    background-position: center;
    padding: 10px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}


.hedader-conatiner-nav {
    width: 220px;
    background-image: url('../files/icons/headingbackicon.png');
    background-repeat: no-repeat;
    background-size: 210px 60px;
    background-position: center;
    padding: 8px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.table-img {
    width: 70px;
}


.bar1, .bar2, .bar3 {
    width: 35px;
    height: 4px;
    background-color: #ffde15;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 10px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -10px) rotate(45deg);
}

.navbar-nav .nav-item .nav-link {
    color: #ecdd17;
    margin: 10px 15px;
    text-align: center;
}

.dropdown-menu .dropdown-item {
    color: black;
    text-align: start;
}

    .dropdown-menu .dropdown-item:hover {
        color: #ecdd17;
        background-color: #323e48;
    }

.text-active {
    --bs-text-opacity: 1;
    color: #eae2b7 !important;
}

@media only screen and (max-width: 900px) {
    .hedader-conatiner {
        width: 300px;
        background-size: 300px 70px;
        padding: 5px;
    }

    /*.hedader-conatiner-nav {
        width: 100%;
        background-size: 90% 70px;
        padding: 5px;
    }*/

    .table-img {
        width: 55px;
    }
}
