@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap');
  :root {
            --primary-color: #4a6bdf;
            --secondary-color: #3a56c4;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --success-color: #28a745;
            --border-color: #ced4da;
            --hover-color: #e9ecef;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
           font-family: "Mukta", sans-serif;
        }
        
        body {
/*            background-color: #f5f7fb;*/
            color: #495057;
            line-height: 1.6;
/*            padding: 20px;*/
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px;
            background-color: white;
            border-radius: 10px;
            margin-bottom: 100px;
/*            box-shadow: var(--shadow);*/
        }
        
        h1 {
            text-align: center;
/*            margin-bottom: 30px;*/
            color: var(--dark-color);
            font-weight: 600;
            position: relative;
/*            padding-bottom: 15px;*/
        }
        
        h1::after {
           /* content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);*/
        }
        
        .dropdown-section {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
/*            margin-bottom: 30px;*/
            padding: 5px;
            background-color: var(--light-color);
            border-radius: 8px;
/*            box-shadow: var(--shadow);*/
        }
        
        .dropdown-group {
            flex: 1;
            min-width: 250px;
            position: relative;
        }
        
        label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--dark-color);
            font-size: 15px;
        }
        
        .searchable-dropdown {
            position: relative;
        }
        
        .dropdown-header {
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .dropdown-icon {
            position: absolute;
            right: 15px;
            color: var(--primary-color);
            pointer-events: none;
            transition: transform 0.3s;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 40px 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 15px;
            background-color: white;
            transition: all 0.3s;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(74, 107, 223, 0.2);
        }
        
        .search-input::placeholder {
            color: #adb5bd;
        }
        
        .dropdown-options {
            position: absolute;
            top: calc(100% + 5px);
            left: 0;
            right: 0;
            max-height: 250px;
            overflow-y: auto;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            z-index: 1000;
            display: none;
            box-shadow: var(--shadow);
        }
        
        .dropdown-options.show {
            display: block;
            animation: fadeIn 0.3s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .dropdown-option {
            padding: 10px 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: all 0.2s;
        }
        
        .dropdown-option:hover {
            background-color: var(--hover-color);
        }
        
        .dropdown-option i {
            margin-right: 10px;
            color: var(--primary-color);
            font-size: 14px;
        }
        
        .selected-option {
            background-color: rgba(74, 107, 223, 0.1);
            font-weight: 500;
        }
        
        .filter-section {
            margin-bottom: 8px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }
        
        .filter-input {
            flex: 1;
            min-width: 200px;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 15px;
            transition: all 0.3s;
        }
        
        .filter-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(74, 107, 223, 0.2);
        }
        
        .search-btn {
            padding: 12px 25px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .search-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-1px);
        }
        
        .table-container {
            overflow-x: auto;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th, td {
            padding: 1px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        
        th {
            background-color: var(--primary-color);
            color: white;
            position: sticky;
            top: 0;
            font-weight: 500;
        }
        
        tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        tr:hover {
            background-color: #e9ecef;
        }
        
        .no-data {
            text-align: center;
            padding: 30px;
            color: #6c757d;
            font-size: 16px;
        }
        
        .no-data i {
            font-size: 24px;
            margin-bottom: 10px;
            color: #adb5bd;
        }
        
        .loading {
            text-align: center;
            padding: 30px;
            color: var(--primary-color);
        }
        
        .loading i {
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #b8c2cc;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            .container {
/*                padding: 20px;*/
            }
            
            .dropdown-section {
                flex-direction: column;
                padding: 20px;
            }
            
            .dropdown-group {
                width: 100%;
            }
            
            .filter-section {
                flex-direction: column;
                align-items: stretch;
            }
            
            .search-btn {
                justify-content: center;
            }
            
            th, td {
/*                padding: 10px 12px;*/
                font-size: 14px;
            }
        }



        /* Icon styles */
        .icon {
            width: 16px;
            height: 16px;
            vertical-align: middle;
            margin-right: 5px;
            fill: currentColor;
        }
        
        .icon-lg {
            width: 24px;
            height: 24px;
        }
        
        /* WhatsApp group container */
        .whatsapp-group-container {
            display: flex;
            flex-direction: column;
            align-items: center;
/*            margin: 20px 0;*/
/*            background-color: #f8f9fa;*/
/*            padding: 15px;*/
            border-radius: 8px;
/*            box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
/*            gap: 10px;*/
        }

        /* WhatsApp group link */
        .whatsapp-group-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 1px;
            padding: 10px 20px;
/*            background-color: #25D366;*/
            color: #03A9F4;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: underline;
/*            animation: pulse 2s infinite;*/
        }

        /*.whatsapp-group-link:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
        }*/

        .whatsapp-group-icon {
            width: 20px;
            height: 20px;
            fill: #24af19;
        }

        /* Marquee text animation */
        .marquee-container {
            width: 100%;
/*            max-width: 600px;*/
            overflow: hidden;
/*            margin-top: 10px;*/
        }

        .marquee-text {
            display: inline-block;
            padding-left: 100%;
            white-space: nowrap;
            animation: scroll-left 20s linear infinite;
            color: #000;
            font-weight: 500;
            font-size: 16px;
        }

        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .whatsapp-group-link {
                padding: 8px 16px;
                font-size: 14px;
            }
            .marquee-text {
                font-size: 14px;
            }
        }  
        
        /* Footer Styles */
        .simple-footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: #4a6bdf;
        }
        
        .footer-links .icon {
            width: 16px;
        }
        
        .copyright {
            font-size: 14px;
            color: #7f8c8d;
        }
        
        @media (max-width: 480px) {
            .footer-links {
/*                flex-direction: column;*/
                gap: 10px;
            }
        } 

        /* App Download Section */
        .app-download {
            background-color: #f8f9fa;
            border-radius: 8px;
/*            padding: 30px;*/
            margin-top: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .app-download h2 {
            color: #2c3e50;
/*            margin-bottom: 20px;*/
            font-size: 24px;
            text-decoration: underline;
        }
        
        .app-download p {
            color: #34495e;
/*            margin-bottom: 25px;*/
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .download-btn {
            display: flex;
            align-items: center;
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .app-store {
            background-color: #009688;
        }
        
        .play-store {
            background-color: #db2261;
        }
        
        .download-icon {
            width: 24px;
            height: 24px;
            margin-right: 10px;
            fill: white;
        }
        
        .download-text {
            text-align: left;
        }
        
        .download-text span {
            display: block;
            font-size: 12px;
        }
        
        .download-text strong {
            font-size: 16px;
        }
        
        .how-to-use {
            margin-top: 25px;
            text-align: left;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .how-to-use h3 {
             text-decoration: underline;
            color: #2c3e50;
/*            margin-bottom: 15px;*/
            font-size: 20px;
        }
        
        .steps {
            list-style-type: none;
            padding: 0;
            counter-reset: step-counter;
        }
        
        .steps li {
            position: relative;
            padding-left: 50px;
            margin-bottom: 20px;
            counter-increment: step-counter;
        }
        
        .steps li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            background-color: #4a6bdf;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .download-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .download-btn {
                width: 100%;
                max-width: 250px;
            }
        }
        
        /* Dropdown icon styles */
        .dropdown-icon {
            width: 16px;
            height: 16px;
            transition: transform 0.3s;
            fill: currentColor;
        }
        
        .dropdown-icon.rotated {
            transform: rotate(180deg);
        }
        
        /* Loading spinner animation */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .loading-spinner {
            animation: spin 1s linear infinite;
        }

        .table-info {
               text-align: left;
               margin-left: 15px;
           }