    /* Base Styles */
        :root {
            --primary-color: #d32f2f;
            --primary-dark: #b71c1c;
            --primary-light: #ff6659;
            --secondary-color: #f5f5f5;
            --text-color: #333;
            --light-gray: #e0e0e0;
            --border-color: #ddd;
            --success-color: #4caf50;
            --warning-color: #ff9800;
            --admin-color: #d32f2f;
            --super-color: #1976d2;
            --master-color: #388e3c;
            --subadmin-color: #7b1fa2;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'SolaimanLipi', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            height: 40px;
        }
        
        .logo-text {
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 1.2rem;
        }
        
        .date-display {
            display: none;
            background: var(--secondary-color);
            padding: 8px 15px;
            border-radius: 6px;
            text-align: center;
        }
        
        .date-display span {
            display: block;
            font-weight: 700;
            color: var(--primary-dark);
        }
        
        .mobile-customer-service {
            color: var(--primary-dark);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-color);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: background 0.3s;
        }
        
        .mobile-menu-btn:hover {
            background: var(--light-gray);
        }
        
        .offcanvas-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 80%;
            max-width: 300px;
            height: 100%;
            background: #111;
            color: white;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 1100;
            overflow-y: auto;
        }
        
        .offcanvas-menu.open {
            transform: translateX(0);
        }
        
        .offcanvas-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid #333;
            background: var(--primary-dark);
        }
        
        .close-menu {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: background 0.3s;
        }
        
        .close-menu:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .offcanvas-body {
            padding: 15px;
        }
        
        .offcanvas-body a {
            display: flex;
            align-items: center;
            padding: 12px 10px;
            color: white;
            border-bottom: 1px solid #333;
            transition: background 0.3s;
            gap: 10px;
        }
        
        .offcanvas-body a:hover {
            background: #333;
        }
        
        .offcanvas-body a i {
            width: 20px;
            text-align: center;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
        }
        
        .overlay.active {
            display: block;
        }
        
        /* Main Content */
        .main-content {
            padding: 20px 0;
        }
        
        .section-title {
            text-align: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 0px;
            position: relative;
            padding-bottom: 0px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
        }
        
        /* Agent Table */
        .agent-table-container {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
       
        .table-header {
            background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
            color: white;
            padding: 15px;
            text-align: center;
        }
        
        .table-notice {
            background: #fff3e0;
            padding: 12px;
            text-align: center;
            font-weight: 600;
            color: #e65100;
            border-bottom: 1px solid #ffcc80;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .table-notice i {
            font-size: 1.2rem;
        }
        
        /* Table Responsive Styles */
        .table-responsive {
            overflow-x: auto;
            width: 100%;
        }

        .agent-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 400px; /* Minimum width for the table */
        }
        
        .agent-table th {
            background: #f5f5f5;
            padding: 15px 10px;
            text-align: center;
            font-weight: 700;
            color: black;
            border: 1px solid var(--border-color);
            font-size: 15px;
        }
        
        .agent-table td {
            padding: 12px 10px;
            text-align: center;
            border: 1px solid var(--border-color);
            font-size: 15px;
        }
        
        .agent-table tr.admin-row {
            background: #ffebee;
        }
        
        .agent-table tr.super-row {
            background: #e3f2fd;
        }
        
        .agent-table tr.master-row {
            background: #e8f5e9;
        }
        
        .agent-table tr.subadmin-row {
            background: #f3e5f5;
        }
        
        .agent-table tr:hover {
            background: #f1f1f1;
        }
        
        .type-badge {
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        
        .type-admin {
            background: #ffcdd2;
            color: var(--admin-color);
        }
        
        .type-super {
            background: #bbdefb;
            color: var(--super-color);
        }
        
        .type-master {
            background: #c8e6c9;
            color: var(--master-color);
        }
        
        .type-subadmin {
            background: #e1bee7;
            color: var(--subadmin-color);
        }
        
        .whatsapp-icon {
            width: 30px;
            height: 30px;
            display: inline-block;
            transition: transform 0.3s;
        }
        
        .whatsapp-icon:hover {
            transform: scale(1.1);
        }
        
        .phone-link {
            color: var(--primary-dark);
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .phone-link:hover {
            color: var(--primary-light);
            text-decoration: underline;
        }
        
        .complaint-btn {
            padding: 6px 12px;
            background: #f5f5f5;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--primary-color);
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .complaint-btn:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        /* Search and Filter */
        .table-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background: white;
            border-bottom: 1px solid var(--border-color);
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .search-box {
            position: relative;
            flex-grow: 1;
            max-width: 300px;
        }
        
        .search-box input {
            width: 100%;
            padding: 10px 15px 10px 40px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-family: 'SolaimanLipi', sans-serif;
        }
        
        .search-box i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }
        
        .filter-buttons {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 8px 15px;
            background: #f5f5f5;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        /* Posts Grid */
        .posts-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .post-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .post-card:hover {
            transform: translateY(-5px);
        }
        
        .post-image {
            height: 200px;
            overflow: hidden;
        }
        
        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .post-card:hover .post-image img {
            transform: scale(1.05);
        }
        
        .post-content {
            padding: 20px;
        }
        
        .post-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--text-color);
            font-weight: 600;
        }
        
        .post-excerpt {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .post-link {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        /* FAQ Section */
        .faq-section {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .faq-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .faq-item {
            display: flex;
            align-items: center;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 8px;
            transition: background 0.3s ease;
        }
        
        .faq-item:hover {
            background: #f1f1f1;
        }
        
        .faq-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            color: white;
            font-size: 1.5rem;
        }
        
        .faq-content p {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 5px;
        }
        
        .faq-content h3 {
            font-size: 1.05rem;
            color: var(--text-color);
        }
        
        /* Footer */
        footer {
            background: var(--primary-dark);
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin-top: 30px;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: white;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #ffccbc;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: background 0.3s;
        }
        
        .social-icons a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        footer a {
            color: white;
            font-weight: 700;
        }
        
        /* Responsive Styles */
        @media (min-width: 768px) {
            .top-menu {
                display: flex;
            }
            
            .header-main {
                padding: 10px 20px;
            }
            
            .date-display {
                display: block;
                text-align: right;
            }
            
            .date-display span {
                display: block;
                font-weight: 700;
            }
            
            .mobile-customer-service {
                display: none;
            }
            
            .nav-menu {
                padding: 10px 20px;
            }
            
            .posts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .faq-list {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            
            .footer-links {
                order: 2;
            }
            
            .social-icons {
                order: 3;
            }
        }
        
        @media (min-width: 992px) {
            .posts-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .agent-table th,
            .agent-table td {
                padding: 15px 10px;
                font-size: 16px;
            }
            
            .table-controls {
                flex-wrap: nowrap;
            }
        }
        
        /* Responsive adjustments for small screens */
        @media (max-width: 767px) {
            .agent-table th, 
            .agent-table td {
                padding: 10px 5px;
                font-size: 14px;
            }
            
            .type-badge {
                font-size: 0.75rem;
                padding: 4px 8px;
            }
            
            .filter-buttons {
                justify-content: center;
                width: 100%;
            }
            
            .search-box {
                max-width: 100%;
            }
        }
        
        /* Utilities */
        .text-center {
            text-align: center;
        }
        
        .hidden {
            display: none;
        }
        
        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .flex {
            display: flex;
        }
        
        .items-center {
            align-items: center;
        }
        
        .font-bold {
            font-weight: 700;
        }