.menu-container {
    background-color: #28475c;
}

.menu-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    overflow-x: auto;
    margin-bottom: 10px;
    list-style: none;
}

.menu-bar a {
    font-size: 16px;
    color: #f0f0f0;
    font-weight: 600;
    padding: 0 4px;
    transition: 0.3s ease all;
    text-wrap: nowrap;
}

@media screen and (max-width: 576px) {
    .menu-bar a {
        font-size: 14px;
    }
}

.menu-bar a:hover {
    color: #f6a800;
}

.menu-bar a.active {
    color: #f6a800;
}

.header .main-nav {
    display: block !important;
    overflow-x: scroll;
    overscroll-behavior-x: scroll;
}

.header .main-nav .menu {
    overflow: scroll !important;
    overflow-x: scroll;
}

.validation-error {
    color: brown;
    margin-top: 5px;
    font-size: 15px;
    padding: 8px 20px;
    width: 100%;
    display: block;
    border-radius: 5px;
    background-color: rgb(248, 215, 218);
}

.is-invalid {
    border: 2px solid rgb(212, 54, 64) !important;
}

.grey-section .left-menu {
    padding: 10px 20px;
}

.logout-btn {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: #666;
}

.logout-btn:hover {
    color: #f6a800;
}

.mobile-fixed-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 20px;
    height: 60px;
}

@media screen and (min-width: 768px) {
    .mobile-fixed-footer {
        display: none;
    }
    .footer-bottom {
        padding-bottom: 60px;
        /* Adjust this value based on the footer height */
    }
}

.category-single img {
    transition: filter 0.3s ease;
}

.category-single:hover img {
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.199));
}

.category-single:hover h6 {
    color: #f6a800;
}

.error-validation {
    color: rgb(212, 54, 64);
}

#cart-table-data .table-responsive {
    overflow-x: auto;
}