/* style.css - COMPLETE VERSION */
:root {
    /* Primary Colors */
    --primary-color: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-dark: #1e40af;
    
    /* Secondary Colors */
    --secondary-color: #10b981;
    --secondary-light: #34d399;
    --secondary-dark: #0da271;
    
    /* Status Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    
    /* Neutral Colors */
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Border & Shadow */
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 1.875rem;
    --font-size-3xl: 2.25rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space);
    position: relative;
}

/* Header */
.header {
    background: white;
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--space);
}

.logo {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    box-shadow: var(--shadow);
}

.school-info h1 {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    margin-bottom: var(--space-xs);
    font-weight: 700;
    line-height: 1.2;
}

.school-info h2 {
    font-size: var(--font-size-md);
    color: var(--gray-600);
    font-weight: 500;
}

.date-time {
    text-align: right;
}

.date-time p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.4;
}

.date-time p:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* Tabs Navigation */
.tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    background: white;
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
}

.tab-btn {
    flex: 1;
    padding: var(--space) var(--space-lg);
    border: none;
    background: transparent;
    border-radius: var(--radius-md);
    font-size: var(--font-size);
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    white-space: nowrap;
}

.tab-btn:hover {
    background: var(--gray-100);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow);
}

.tab-btn i {
    font-size: var(--font-size-lg);
}

/* Tab Content */
.tab-content {
    display: none;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.3s ease forwards;
}

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

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

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space);
    border-bottom: 2px solid var(--border-color);
}

.tab-header h2 {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.tab-header h2 i {
    color: var(--primary-light);
}

.actions {
    display: flex;
    gap: var(--space);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2563eb 100%);
}

.btn-secondary {
    background: var(--gray-600);
    color: white;
}

.btn-secondary:hover {
    background: var(--gray-700);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--secondary-light) 100%);
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, #0da271 0%, #10b981 100%);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color) 0%, #f87171 100%);
    color: white;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #fbbf24 100%);
    color: white;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

.btn-print {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
}

.btn-print:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--gray-600);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--gray-50);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-icon {
    background: transparent;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: var(--gray-100);
    color: var(--primary-color);
}

.btn-icon.danger:hover {
    background: #fee2e2;
    color: var(--danger-color);
}

/* Forms */
.form-container {
    background: var(--gray-50);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: var(--space);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.form-group label i {
    color: var(--primary-light);
    width: 20px;
    text-align: center;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: var(--font-size);
    transition: all 0.3s ease;
    background: white;
    font-family: var(--font-family);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control[readonly] {
    background: var(--gray-100);
    cursor: not-allowed;
}

.form-control[disabled] {
    background: var(--gray-100);
    color: var(--gray-500);
    cursor: not-allowed;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space);
}

/* Signature Section */
.signature-section {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    margin-top: var(--space-lg);
}

.signature-section h3 {
    margin-bottom: var(--space);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space);
}

.signature-box label {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin-bottom: var(--space-xs);
    display: block;
}

/* Tables */
.saved-records {
    margin-top: var(--space-xl);
}

.saved-records h3 {
    margin-bottom: var(--space);
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.table-container {
    overflow-x: auto;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 500;
    white-space: nowrap;
    font-size: var(--font-size-sm);
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

tbody tr {
    transition: all 0.2s ease;
}

tbody tr:hover {
    background: var(--gray-50);
}

/* Status Badges */
.status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    text-transform: capitalize;
}

.status.pending {
    background: #fef3c7;
    color: #92400e;
}

.status.approved {
    background: #d1fae5;
    color: #065f46;
}

.status.paid {
    background: #dbeafe;
    color: #1e40af;
}

/* Category Badges */
.category-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
}

/* Filter Section */
.filter-section {
    background: var(--gray-50);
    padding: var(--space);
    border-radius: var(--radius);
    margin-bottom: var(--space);
    border: 1px solid var(--border-color);
}

.filter-section h3 {
    margin-bottom: var(--space);
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.filter-controls {
    display: flex;
    gap: var(--space);
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Summary Section */
.summary-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space);
    margin-top: var(--space-lg);
}

.summary-card {
    background: white;
    padding: var(--space);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.summary-card h4 {
    color: var(--gray-600);
    margin-bottom: var(--space);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
}

.amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

/* Reports Section */
.report-filters {
    background: var(--gray-50);
    padding: var(--space);
    border-radius: var(--radius);
    margin-bottom: var(--space-lg);
    display: flex;
    gap: var(--space);
    align-items: flex-end;
    flex-wrap: wrap;
    border: 1px solid var(--border-color);
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space);
    margin-top: var(--space);
}

.report-card {
    background: white;
    padding: var(--space);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

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

.report-card h3 {
    margin-bottom: var(--space);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--gray-100);
}

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

.summary-stats {
    margin-top: var(--space);
    padding: var(--space-sm);
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
}

.summary-stats p {
    margin: 0.25rem 0;
    color: var(--gray-700);
}

.summary-stats strong {
    color: var(--primary-color);
}

/* Print Modal */
.print-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.print-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.print-modal-header {
    padding: var(--space);
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.print-modal-header h3 {
    margin: 0;
    font-size: var(--font-size-lg);
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: var(--font-size-xl);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.print-modal-body {
    padding: var(--space-xl);
    overflow-y: auto;
    flex: 1;
}

.print-modal-footer {
    padding: var(--space);
    background: var(--gray-50);
    display: flex;
    justify-content: flex-end;
    gap: var(--space);
    border-top: 1px solid var(--border-color);
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: var(--space-xl);
    color: var(--gray-600);
}

.loading-spinner p {
    margin-top: var(--space);
    font-size: var(--font-size-sm);
}

.spinner {
    border: 3px solid var(--gray-200);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No Data Message */
.no-data {
    text-align: center;
    padding: var(--space-xl);
    color: var(--gray-600);
    font-size: var(--font-size);
}

.no-data i {
    font-size: 3rem;
    margin-bottom: var(--space);
    color: var(--gray-300);
}

.no-data h3 {
    margin-bottom: var(--space-sm);
    color: var(--gray-700);
}

/* Footer */
.footer {
    text-align: center;
    padding: var(--space);
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    margin-top: var(--space-lg);
    border-top: 1px solid var(--border-color);
}

.support {
    margin-top: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space);
    flex-wrap: wrap;
}

.support i {
    color: var(--primary-light);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space); }
.mt-4 { margin-top: var(--space-md); }
.mt-5 { margin-top: var(--space-lg); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space); }
.mb-4 { margin-bottom: var(--space-md); }
.mb-5 { margin-bottom: var(--space-lg); }

.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space); }
.p-4 { padding: var(--space-md); }
.p-5 { padding: var(--space-lg); }

.d-none { display: none !important; }
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }

.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.align-center { align-items: center; }
.align-stretch { align-items: stretch; }

.gap-1 { gap: var(--space-xs); }
.gap-2 { gap: var(--space-sm); }
.gap-3 { gap: var(--space); }
.gap-4 { gap: var(--space-md); }
.gap-5 { gap: var(--space-lg); }

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }
    
    .print-modal,
    .print-modal * {
        visibility: visible;
    }
    
    .print-modal {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: white;
    }
    
    .print-modal-header,
    .print-modal-footer {
        display: none !important;
    }
    
    .print-modal-content {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        max-height: none;
        box-shadow: none;
        border: none;
        margin: 0;
        padding: 0;
    }
    
    .print-modal-body {
        padding: 20px;
        margin: 0;
    }
    
    @page {
        margin: 20mm;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    table {
        page-break-inside: avoid;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: var(--space-sm);
    }
    
    .header {
        padding: var(--space) var(--space-lg);
    }
}

@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .signature-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-section {
        grid-template-columns: 1fr;
    }
    
    .report-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: var(--space);
        text-align: center;
    }
    
    .tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: var(--space-sm) var(--space);
        justify-content: flex-start;
    }
    
    .tab-header {
        flex-direction: column;
        gap: var(--space);
        align-items: stretch;
    }
    
    .actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .report-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .user-info-bar {
        position: static;
        margin-bottom: var(--space);
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: var(--space-xs);
    }
    
    .tab-content {
        padding: var(--space);
    }
    
    .form-container {
        padding: var(--space);
    }
    
    .logo {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-xl);
    }
    
    .school-info h1 {
        font-size: var(--font-size-lg);
    }
    
    .school-info h2 {
        font-size: var(--font-size);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .form-control {
        border: 2px solid currentColor;
    }
    
    .table-container {
        border: 2px solid currentColor;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #3b82f6;
        --primary-light: #60a5fa;
        --primary-dark: #2563eb;
        
        --light-color: #1f2937;
        --dark-color: #f9fafb;
        --border-color: #374151;
        --gray-50: #111827;
        --gray-100: #1f2937;
        --gray-200: #374151;
        --gray-300: #4b5563;
        --gray-400: #6b7280;
        --gray-500: #9ca3af;
        --gray-600: #d1d5db;
        --gray-700: #e5e7eb;
        --gray-800: #f3f4f6;
        --gray-900: #f9fafb;
    }
    
    body {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        color: var(--dark-color);
    }
    
    .header,
    .tab-content,
    .form-container,
    .table-container,
    .summary-card,
    .report-card,
    .filter-section,
    .report-filters,
    .print-modal-content {
        background: var(--light-color);
        border-color: var(--border-color);
    }
    
    .form-control {
        background: var(--gray-100);
        color: var(--gray-700);
        border-color: var(--border-color);
    }
    
    .form-control:focus {
        background: var(--gray-100);
    }
    
    .form-control[readonly],
    .form-control[disabled] {
        background: var(--gray-200);
        color: var(--gray-500);
    }
    
    .form-group label {
        color: var(--gray-600);
    }
    
    .saved-records h3,
    .filter-section h3 {
        color: var(--gray-600);
    }
}