
       :root {
            --primary-color: #ea4051;
            --hover-color: #d13342;
            --background-light: #fff;
            --icon-color: #b0b0b0;
        }
        
        .offcanvas-start {
            transition: transform 0.3s ease-in-out;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
            box-shadow: none;
            background-color: transparent !important;
        }
        .navbar-toggler:focus, .navbar-toggler:active {
            box-shadow: none !important;
            border: none !important;
        }
        .navbar {
            display: flex;
            justify-content: center;
            position: relative;
            padding: 30px;
            background-color: #053d8f !important; 
            /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
        }
        .navbar-brand {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            color: #ffffff !important;
            font-weight: bold;
            display: flex;
            align-items: center;
            font-size: 24px;
        }
        .navbar-brand img {
            height: 40px;
            margin-right: 10px;
        }
        .navbar-toggler {
            position: absolute;
            left: 15px;
        }
        .nav-item {
            border-bottom: 1px solid #ddd;
        }
        .nav-item:last-child {
            border-bottom: none;
        }
        .nav-link {
            padding: 12px 15px;
            transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
            color: var(--icon-color) !important;
            font-weight: 500;
        }
        .nav-link:hover {
            background-color: #f8f9fa;
            color: var(--hover-color) !important;
        }
        .offcanvas-title {
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        .footer-menu {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #053d8f !important;
            border-top: 1px solid #ddd;
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
        }
        .footer-menu a {
            text-decoration: none;
            color: #ffffff !important;
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease-in-out;
            line-height: 1 !important;
        }
        .footer-menu a:hover {
            color: #a5a4a4;
        }
        .footer-menu i {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .search-container {
            padding: 20px;
        }
        .card-list {
            padding: 10px;

          
            overflow-y: auto; 

            max-height: calc(100vh - 120px) !important; /* Adjusts based on viewport height */
    min-height: 300px !important; /* Ensures it doesn't collapse */
    margin-top: 60px;
            
            
        }
        .card {
            transition: all 0.3s ease-in-out;
            display: flex;
            justify-content: space-between;
            padding: 3px;
            margin-bottom: 10px;
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-color: rgb(115 113 113 / 13%);
            cursor: pointer;
            overflow: hidden;
           
        }
        .card img {
            width: 70px;
            height: 70px;
            /* border-radius: 10px; */
            border-radius: 5px;
            margin-right: 5px;
        }


        .badge-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; /* Adjust size */
    height: 24px; /* Same as width for a circle */
    background-color: #adacac; /* Change to match design */
    color: white; /* Text color */
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    float: right;
}
       
.filter-container {
    display: flex;
    /* justify-content: center; */
    gap: 5px;
    padding: 10px 15px 0px 15px;
    background: #fff;
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent items from wrapping */
    max-width: 100%; /* Ensure it doesn't stretch too much */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: rgba(200, 200, 200, 0.5) transparent; /* Firefox scrollbar */
   
}

/* Scrollbar for WebKit (Chrome, Edge, Safari) */
.filter-container::-webkit-scrollbar {
    height: 4px; /* Thin scrollbar */
}

.filter-container::-webkit-scrollbar-thumb {
    background-color: rgba(200, 200, 200, 0.5); /* Light gray scrollbar */
    border-radius: 4px;
}

.filter-container::-webkit-scrollbar-track {
    background-color: transparent; /* Invisible track */
}



.filter-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    /* border: 1px solid #dcdcdc; */
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-color: #f9f9f9;
    font-weight: 500;
    font-size: 14px;
   
    text-align: center;
}

.filter-option:hover {
    background-color: #f1f1f1;
    border-color: #b0b0b0;
}

/* Hide the default radio button */
.filter-option input {
    display: none;
}

.circle-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.veg {
    background-color: green;
}

.non-veg {
    background-color:rgb(215, 8, 29);
}

.both {
    background-color: orange;
}

.filter-text {
    font-size: 14px;
    color: #f6f1f1;
}



.expandable-card {
            cursor: pointer;
        }


        .expanded {
            border: 2px solid #007bff;
            box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.5);
        }

        .sub-card-list {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #ddd;
            display: none;
        }

        .sub-card {
            padding: 8px;
            background: #f8f9fa;
            border-radius: 5px;
            margin-bottom: 5px;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        }

        /* Loading text styling */
        .loading-text {
            text-align: center;
            padding: 10px;
            font-weight: bold;
            color:rgb(236, 237, 237);
            opacity: 1;
            transition: opacity 0.3s ease-in-out;
        }


        .sub-card-list {
            margin-top: 10px;
        
            display: none; /* Hidden by default */
        }

        .sub-card-list ul {
            list-style: none;
            padding: 0;
        }

        .sub-card-list ul li {
            padding: 5px;
            border-bottom: 1px solid #ddd;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        }

        .sub-card-list ul li img {
            width: 50px;
            height: 50px;
            border-radius: 5px;
            margin-right: 10px;
        }


        li.list-group-item.d-flex.align-items-center{
            border: unset;
    border-bottom: 1px  dashed #bcb8b8;
        }        


        .card-body{
            padding: 5px 5px 0px 5px !important;
        }


        .btn-primary{
            background-color: #053d8f;
            border-color:#053d8f;
        }
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000; /* Ensures it stays above other content */
            background-color: #053d8f; /* Ensure visibility */
            /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
        }

        .filter-container {
            position: sticky;
            top: 60px;
          
            z-index: 999;
            padding: 7px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            
        }


        .card-title
        {
            font-size: 17px !important;
        }

        .row{
            height: 80px !important;
        }

        .parent-container {
            display: flex;
            flex-direction: column;
            height: 100vh; /* Ensure it takes full viewport height */
        }

        .parent-container {
            display: flex;
            flex-direction: column;
            height: 100vh; /* Full viewport height */
        }
        
        .card-list {
            flex-grow: 1;
            overflow-y: auto;
            scroll-behavior: smooth; /* Enables smooth scrolling */
            -webkit-overflow-scrolling: touch; /* Fixes stuck scrolling on mobile */
            padding-bottom: 10px; /* Prevents content from blocking last items */
        }
        
        .expandable-card {
            transition: all 0.3s ease-in-out;
        }
        
     


       