/*
 * "Slate" theme — deliberately the opposite of the glass/gradient themes:
 * monochrome, flat, sharp corners, no shadows or blur. A minimal,
 * high-contrast "print" aesthetic. Scoped under .theme-slate; supports
 * both of Filament's light/dark modes via .theme-slate / .theme-slate.dark.
 */

.theme-slate:not(.dark) {
    --slate-bg: #fafafa;
    --slate-surface: #ffffff;
    --slate-border: #d4d4d8;
}

.theme-slate.dark {
    --slate-bg: #09090b;
    --slate-surface: #111113;
    --slate-border: #27272a;
}

.theme-slate .fi-main-ctn {
    background-color: var(--slate-bg);
}

.theme-slate .fi-sidebar {
    background-color: var(--slate-surface);
    border-inline-end: 1px solid var(--slate-border);
}

.theme-slate .fi-topbar-ctn .fi-topbar {
    background-color: var(--slate-surface);
    backdrop-filter: none;
    border-bottom: 1px solid var(--slate-border);
    box-shadow: none;
}

.theme-slate .fi-sidebar-item-btn,
.theme-slate .fi-btn,
.theme-slate .fi-input,
.theme-slate .fi-select-input,
.theme-slate .fi-badge,
.theme-slate .fi-sc-section,
.theme-slate .fi-wi-stats-overview-stat,
.theme-slate .fi-ta-ctn,
.theme-slate .fi-modal-window {
    border-radius: 0.25rem !important;
}

.theme-slate .fi-sidebar-item.fi-active .fi-sidebar-item-btn {
    background-color: transparent;
    border-inline-start: 3px solid var(--primary-600);
}

.theme-slate .fi-sidebar-group-label {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.625rem;
    opacity: 0.6;
}

.theme-slate .fi-sc-section,
.theme-slate .fi-wi-stats-overview-stat,
.theme-slate .fi-ta-ctn,
.theme-slate .fi-modal-window {
    background-color: var(--slate-surface);
    border: 1px solid var(--slate-border);
    box-shadow: none;
}

.theme-slate .fi-btn.fi-color-primary {
    box-shadow: none;
}

.theme-slate .fi-btn:not(.fi-color-primary) {
    border: 1px solid var(--slate-border);
}
