/* Theme Variables - Re-enabled for toggle functionality */
:root {
    /* Light theme (default) */
    --bg-primary: #f1f5f9;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

:root[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
}

/* Apply theme to body */
body {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Apply theme to sections */
section {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

/* Apply theme to cards */
.id-check-card,
.quick-card,
.service-card,
.form-card {
    background-color: var(--bg-card) !important;
    color: var(--text-primary) !important;
}

/* Apply theme to inputs */
input,
select,
textarea {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
}