/* Minimal shadcn dark theme for Bootstrap override */
:root {
    --bs-body-bg: #18181b;
    --bs-body-color: #e4e4e7;
    --bs-card-bg: #232326;
    --bs-card-color: #e4e4e7;
    --bs-primary: #6366f1;
    --bs-secondary: #232326;
    --bs-success: #22c55e;
    --bs-info: #0ea5e9;
    --bs-warning: #eab308;
    --bs-danger: #ef4444;
    --bs-dark: #18181b;
    --bs-light: #f4f4f5;
}
.bg-dark {
    background-color: #18181b !important;
}
.text-light {
    color: #e4e4e7 !important;
}
.card.bg-secondary {
    background-color: #232326 !important;
    color: #e4e4e7 !important;
}
