/* Theme tokens — light / dark / brand */

:root,
[data-bs-theme="light"] {
    --brand-primary: var(--brand-primary, #283d5c);
    --brand-secondary: var(--brand-secondary, #3498db);
    --rapso-bg-base: #f8f9fa;
    --rapso-bg-surface: #ffffff;
    --rapso-text-primary: #212529;
    --rapso-text-muted: #6c757d;
    --rapso-border-subtle: #dee2e6;
    --rapso-sidebar-bg: #1f2937;
    --rapso-sidebar-text: rgba(255,255,255,0.85);
    --rapso-row-hover: rgba(0,0,0,0.03);
    --rapso-row-selected: rgba(13,110,253,0.08);
}

[data-bs-theme="dark"] {
    --rapso-bg-base: #0f172a;
    --rapso-bg-surface: #1e293b;
    --rapso-text-primary: #e2e8f0;
    --rapso-text-muted: #94a3b8;
    --rapso-border-subtle: #334155;
    --rapso-sidebar-bg: #0b1220;
    --rapso-sidebar-text: rgba(255,255,255,0.85);
    --rapso-row-hover: rgba(255,255,255,0.04);
    --rapso-row-selected: rgba(96,165,250,0.12);
}

/* Apply tokens to common surfaces */
body {
    background-color: var(--rapso-bg-base);
    color: var(--rapso-text-primary);
}

.bg-white {
    background-color: var(--rapso-bg-surface) !important;
    color: var(--rapso-text-primary);
}

[data-bs-theme="dark"] .bg-white {
    background-color: var(--rapso-bg-surface) !important;
}

[data-bs-theme="dark"] .text-dark {
    color: var(--rapso-text-primary) !important;
}

[data-bs-theme="dark"] .border-bottom,
[data-bs-theme="dark"] .border-top,
[data-bs-theme="dark"] .border {
    border-color: var(--rapso-border-subtle) !important;
}
