 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
 }

 body {
     background-color: #f5f7fb;
 }

 .dashboard-container {
     display: flex;
     min-height: 100vh;
 }

 /* Sidebar Styles */
 .sidebar {
     width: 280px;
     background: linear-gradient(180deg, #0a1e2e 0%, #0d2a3e 100%);
     color: white;
     display: flex;
     flex-direction: column;
     position: fixed;
     height: 100vh;
     overflow-y: auto;
 }

 .logo {
     padding: 24px;
     display: flex;
     align-items: center;
     gap: 12px;
     border-bottom: 1px solid rgba(243, 238, 238, 0.952);
 }

 .logo i {
     font-size: 28px;
     color: #0D8F72;
 }

 .logo span {
     font-size: 18px;
     font-weight: 600;
 }

 .nav-menu {
     flex: 1;
     padding: 24px 0;
 }

 .nav-item {
     display: flex;
     align-items: center;
     padding: 14px 24px;
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: all 0.3s;
     gap: 12px;
     position: relative;
 }

 .nav-item i {
     width: 20px;
     font-size: 18px;
 }

 .nav-item:hover {
     background: rgba(255, 255, 255, 0.1);
     color: white;
 }

 .nav-item.active {
     background: #0D8F72;
     color: white;
 }

 .badge {
     background: #ff4444;
     color: white;
     padding: 2px 8px;
     border-radius: 12px;
     font-size: 11px;
     margin-left: auto;
 }

 .sidebar-footer {
     padding: 24px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .user-info {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .user-info img {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     object-fit: cover;
 }

 .user-name {
     font-weight: 600;
     font-size: 14px;
 }

 .user-role {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.6);
 }

 .logout-btn {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border: none;
     color: white;
     border-radius: 0;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s;
 }

 .logout-btn i {
     font-size: 1.2rem;
 }

 .logout-btn:hover {
     background: rgba(255, 255, 255, 0.2);
 }

 /* Main Content */
 .main-content {
     flex: 1;
     margin-left: 280px;
     background: #f5f7fb;
     min-height: 100vh;
 }

 .top-bar {
     background: white;
     padding: 20px 30px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .page-title h1 {
     font-size: 24px;
     color: #333;
     margin-bottom: 5px;
 }

 .page-title p {
     color: #666;
     font-size: 14px;
 }

 .top-bar-actions {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .search-box {
     display: flex;
     align-items: center;
     background: #f5f7fb;
     padding: 10px 15px;
     border-radius: 8px;
     width: 300px;
 }

 .search-box i {
     color: #999;
     margin-right: 10px;
 }

 .search-box input {
     border: none;
     background: none;
     outline: none;
     width: 100%;
     font-size: 14px;
 }

 .notification-btn {
     position: relative;
     background: none;
     border: none;
     font-size: 20px;
     color: #666;
     cursor: pointer;
 }

 .notification-badge {
     position: absolute;
     top: -5px;
     right: -5px;
     background: #ff4444;
     color: white;
     font-size: 10px;
     padding: 2px 5px;
     border-radius: 10px;
 }

 /* Content Area */
 .content-area {
     padding: 30px;
 }

 .content-section {
     display: none;
 }

 .content-section.active {
     display: block;
 }

 /* Stats Grid */
 .stats-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 25px;
     margin-bottom: 30px;
 }

 .stat-card {
     background: white;
     border-radius: 12px;
     padding: 25px;
     display: flex;
     align-items: center;
     gap: 20px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s;
 }

 .stat-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .stat-icon {
     width: 60px;
     height: 60px;
     background: rgba(13, 143, 114, 0.1);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     color: #0D8F72;
 }

 .stat-details h3 {
     font-size: 14px;
     color: #666;
     margin-bottom: 8px;
     font-weight: 500;
 }

 .stat-value {
     font-size: 28px;
     font-weight: 700;
     color: #333;
 }

 /* Charts Grid */
 .charts-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 25px;
     margin-bottom: 30px;
 }

 .chart-card {
     background: white;
     border-radius: 12px;
     padding: 20px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .chart-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
 }

 .chart-header h3 {
     font-size: 16px;
     color: #333;
 }

 .chart-controls {
     display: flex;
     gap: 10px;
 }

 .chart-filter {
     padding: 8px 12px;
     border: 1px solid #e0e0e0;
     border-radius: 6px;
     font-size: 13px;
     outline: none;
 }

 .btn-filter {
     padding: 8px 15px;
     background: #0D8F72;
     color: white;
     border: none;
     border-radius: 6px;
     font-size: 13px;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .chart-container {
     height: 300px;
     position: relative;
 }

 .chart-legend {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     margin-top: 20px;
     padding-top: 15px;
     border-top: 1px solid #e0e0e0;
 }

 .legend-item {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 13px;
     color: #666;
 }

 .legend-color {
     width: 12px;
     height: 12px;
     border-radius: 3px;
 }

 /* Table Card */
 .table-card {
     background: white;
     border-radius: 12px;
     padding: 20px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .table-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
 }

 .table-header h3 {
     font-size: 18px;
     color: #333;
 }

 .view-all-btn {
     padding: 8px 16px;
     background: none;
     border: 1px solid #0D8F72;
     color: #0D8F72;
     border-radius: 6px;
     cursor: pointer;
     transition: all 0.3s;
 }

 .view-all-btn:hover {
     background: #0D8F72;
     color: white;
 }

 .table-responsive {
     overflow-x: auto;
 }

 .data-table {
     width: 100%;
     border-collapse: collapse;
 }

 .data-table th {
     text-align: left;
     padding: 15px;
     background: #f8f9fa;
     color: #666;
     font-weight: 600;
     font-size: 13px;
     border-bottom: 2px solid #e0e0e0;
 }

 .data-table td {
     padding: 15px;
     border-bottom: 1px solid #e0e0e0;
     color: #444;
     font-size: 14px;
 }

 .data-table tbody tr:hover {
     background: #f8f9fa;
 }

 /* Status Badges */
 .status-badge {
     padding: 5px 10px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 500;
 }

 .status-pending {
     background: #fff3cd;
     color: #856404;
 }

 .status-critical {
     background: #f8d7da;
     color: #721c24;
 }

 .status-resolved {
     background: #d4edda;
     color: #155724;
 }

 .status-escalated {
     background: #cce5ff;
     color: #004085;
 }

 .priority-high {
     color: #dc3545;
     font-weight: 600;
 }

 .priority-medium {
     color: #fd7e14;
     font-weight: 600;
 }

 .priority-low {
     color: #28a745;
     font-weight: 600;
 }

 .action-btn {
     padding: 8px 12px;
     border: none;
     border-radius: 6px;
     cursor: pointer;
     font-size: 13px;
     transition: all 0.3s;
 }

 .action-btn.assign {
     background: #0D8F72;
     color: white;
 }

 .action-btn.assign:hover {
     background: #0a735c;
 }

 /* Contractor Grid */
 .contractor-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 20px;
 }

 .contractor-card {
     background: white;
     border-radius: 12px;
     padding: 20px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .contractor-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 15px;
 }

 .contractor-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     object-fit: cover;
 }

 .contractor-info h4 {
     font-size: 16px;
     color: #333;
     margin-bottom: 5px;
 }

 .contractor-info p {
     font-size: 13px;
     color: #666;
 }

 .contractor-stats {
     display: flex;
     justify-content: space-around;
     padding: 15px 0;
     border-top: 1px solid #e0e0e0;
     border-bottom: 1px solid #e0e0e0;
     margin-bottom: 15px;
 }

 .stat-item {
     text-align: center;
 }

 .stat-number {
     font-size: 20px;
     font-weight: 700;
     color: #333;
 }

 .stat-label {
     font-size: 12px;
     color: #666;
     margin-top: 5px;
 }

 .contractor-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .rating {
     color: #ffc107;
 }

 .rating span {
     color: #666;
     margin-left: 5px;
 }

 /* Modal Styles */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 1000;
     justify-content: center;
     align-items: center;
 }

 .modal.active {
     display: flex;
 }

 .modal-content {
     background: white;
     border-radius: 12px;
     width: 90%;
     max-width: 600px;
     max-height: 90vh;
     overflow-y: auto;
     animation: modalSlideIn 0.3s;
 }

 @keyframes modalSlideIn {
     from {
         transform: translateY(-50px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 .modal-header {
     padding: 20px;
     border-bottom: 1px solid #e0e0e0;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .modal-header h3 {
     font-size: 18px;
     color: #333;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .modal-header h3 i {
     color: #0D8F72;
 }

 .close-btn {
     background: none;
     border: none;
     font-size: 24px;
     cursor: pointer;
     color: #999;
 }

 .close-btn:hover {
     color: #333;
 }

 .incident-form {
     padding: 20px;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-size: 14px;
     color: #555;
     font-weight: 500;
 }

 .form-group label i {
     color: #0D8F72;
     margin-right: 8px;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 12px;
     border: 1px solid #e0e0e0;
     border-radius: 8px;
     font-size: 14px;
     outline: none;
     transition: all 0.3s;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     border-color: #0D8F72;
     box-shadow: 0 0 0 3px rgba(13, 143, 114, 0.1);
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 .full-width {
     grid-column: 1 / -1;
 }

 .form-actions {
     display: flex;
     gap: 15px;
     margin-top: 30px;
 }

 .btn-primary {
     flex: 1;
     padding: 14px;
     background: #0D8F72;
     color: white;
     border: none;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     transition: all 0.3s;
 }

 .btn-primary:hover {
     background: #0a735c;
 }

 .btn-secondary {
     flex: 1;
     padding: 14px;
     background: #f8f9fa;
     color: #666;
     border: 1px solid #e0e0e0;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     transition: all 0.3s;
 }

 .btn-secondary:hover {
     background: #e9ecef;
 }

 .btn-add-incident {
     padding: 12px 24px;
     background: #0D8F72;
     color: white;
     border: none;
     border-radius: 8px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s;
 }

 .btn-add-incident:hover {
     background: #0a735c;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(13, 143, 114, 0.3);
 }

 /* Toast Notification */
 .toast {
     position: fixed;
     top: 20px;
     right: 20px;
     padding: 15px 25px;
     background: white;
     border-radius: 8px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
     display: flex;
     align-items: center;
     gap: 10px;
     z-index: 2000;
     animation: slideIn 0.3s;
 }

 .toast.success {
     border-left: 4px solid #28a745;
 }

 .toast.error {
     border-left: 4px solid #dc3545;
 }

 .toast.info {
     border-left: 4px solid #17a2b8;
 }

 .toast i {
     font-size: 20px;
 }

 .toast.success i {
     color: #28a745;
 }

 .toast.error i {
     color: #dc3545;
 }

 .toast.info i {
     color: #17a2b8;
 }

 @keyframes slideIn {
     from {
         transform: translateX(100%);
         opacity: 0;
     }

     to {
         transform: translateX(0);
         opacity: 1;
     }
 }

 /* Verification Queue Styles */
 .verification-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
     gap: 25px;
     margin-top: 20px;
 }

 .verification-card {
     background: white;
     border-radius: 12px;
     padding: 20px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     border: 1px solid #e0e0e0;
     display: flex;
     flex-direction: column;
     gap: 15px;
     transition: transform 0.3s;
 }

 .verification-card:hover {
     transform: translateY(-5px);
 }

 .verification-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
 }

 .verification-info h4 {
     font-size: 16px;
     color: #333;
     margin-bottom: 4px;
 }

 .verification-info p {
     font-size: 13px;
     color: #666;
 }

 .verification-images {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 10px;
 }

 .image-container {
     position: relative;
     border-radius: 8px;
     overflow: hidden;
     height: 180px;
     background: #f8f9fa;
 }

 .image-container img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .image-label {
     position: absolute;
     top: 10px;
     left: 10px;
     background: rgba(0, 0, 0, 0.6);
     color: white;
     padding: 4px 10px;
     border-radius: 4px;
     font-size: 11px;
     font-weight: 600;
 }

 .verification-details {
     background: #f8f9fa;
     padding: 15px;
     border-radius: 8px;
     font-size: 13px;
 }

 .detail-row {
     display: flex;
     justify-content: space-between;
     margin-bottom: 8px;
 }

 .detail-row:last-child {
     margin-bottom: 0;
 }

 .detail-label {
     color: #666;
 }

 .detail-value {
     color: #333;
     font-weight: 500;
 }

 .verification-actions {
     display: flex;
     gap: 12px;
     margin-top: 5px;
 }

 .approve-btn {
     flex: 2;
     background: #0D8F72;
     color: white;
     border: none;
     padding: 12px;
     border-radius: 8px;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     transition: all 0.3s;
 }

 .approve-btn:hover {
     background: #0a735c;
     box-shadow: 0 4px 12px rgba(13, 143, 114, 0.2);
 }

 .reject-btn {
     flex: 1;
     background: #fff;
     color: #dc3545;
     border: 1px solid #dc3545;
     padding: 12px;
     border-radius: 8px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s;
 }

 .reject-btn:hover {
     background: #fff5f5;
 }

 .badge.warning {
     background: #fd7e14;
 }

 /* Reports Section Styles */
 .analytics-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
 }

 .analytics-card {
     background: white;
     border-radius: 16px;
     padding: 2rem;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     border: 1px solid #e2e8f0;
 }

 .analytics-card h3 {
     font-size: 1.1rem;
     color: #1e293b;
     margin-bottom: 1.5rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
 }

 .analytics-card h3 i {
     color: #0D8F72;
 }

 .stat-progress {
     margin-bottom: 1.25rem;
 }

 .stat-progress:last-child {
     margin-bottom: 0;
 }

 .stat-progress-header {
     display: flex;
     justify-content: space-between;
     font-size: 0.9rem;
     font-weight: 500;
     color: #64748b;
     margin-bottom: 0.5rem;
 }

 .progress-bar {
     height: 8px;
     background: #f1f5f9;
     border-radius: 4px;
     overflow: hidden;
 }

 .progress-fill {
     height: 100%;
     border-radius: 4px;
     transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .summary-stats {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .summary-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-bottom: 1rem;
     border-bottom: 1px solid #f1f5f9;
 }

 .summary-item:last-child {
     border-bottom: none;
     padding-bottom: 0;
 }

 .summary-item .label {
     color: #64748b;
     font-size: 0.95rem;
 }

 .summary-item .value {
     font-size: 1.25rem;
     font-weight: 700;
     color: #0D8F72;
 }

 .badge.success {
     background: #dcfce7;
     color: #15803d;
 }

/* Main Live Map Section Styles */
.map-controls-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.map-search-bar {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.map-search-bar .input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 0 auto;
}

.map-search-bar label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.map-search-bar label i {
    color: #0D8F72;
    margin-right: 5px;
}

.map-search-bar input {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: #f8fafc;
}

.map-search-bar input:focus {
    border-color: #0D8F72;
    box-shadow: 0 0 0 3px rgba(13, 143, 114, 0.1);
    outline: none;
    background: white;
}

.detection-bar {
    flex-wrap: wrap;
    gap: 12px;
}

.detection-classes {
    min-width: 260px;
}

.class-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 8px 0;
    max-width: 520px;
}

.class-checkboxes label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #475569;
    background: #f1f5f9;
    border-radius: 16px;
    padding: 4px 10px;
}

.class-checkboxes .class-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #0D8F72;
    padding: 4px 0;
}

.class-checkboxes .class-actions button {
    background: none;
    border: none;
    color: #0D8F72;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.btn-secondary {
    padding: 12px 24px;
    background: white;
    color: #0D8F72;
    border: 1.5px solid #0D8F72;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #f0fdf9;
    transform: translateY(-1px);
}

.main-map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    height: calc(100vh - 350px);
    min-height: 500px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

#mainLiveMap {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.nearby-incident-marker {
    background: transparent;
    transition: transform 0.3s;
}

.nearby-incident-marker:hover {
    transform: scale(1.5) !important;
    z-index: 1000 !important;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    padding: 2px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
    margin: 15px;
    line-height: inherit;
}

.map-status-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 2;
    background: white;
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #0D8F72;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

#mapLocationLabel {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(13, 143, 114, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(13, 143, 114, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(13, 143, 114, 0); }
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination-info {
    color: #64748b;
    font-size: 0.9rem;
}

.pagination-info span {
    font-weight: 600;
    color: #1e293b;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-pagination {
    background: white;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-pagination:hover:not(:disabled) {
    border-color: #0D8F72;
    color: #0D8F72;
    background: #f0fdf9;
}

.btn-pagination:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8fafc;
}

.page-numbers {
    display: flex;
    gap: 0.25rem;
}

.page-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    border-color: #cbd5e1;
    color: #1e293b;
}

.page-btn.active {
    background: #0D8F72;
    color: white;
    border-color: #0D8F72;
    box-shadow: 0 2px 6px rgba(13, 143, 114, 0.2);
}

