/* ============================================
   BANQUETE — Light Premium Theme
   Minimal overrides for Filament 3
   ============================================ */

/* ── Typography ── */
.fi-header-heading {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #18181b;
}

/* ── Sidebar collapsed: hide text, keep icon ── */
.fi-sidebar-collapsed .fi-sidebar-brand-text {
    display: none;
}

/* ── Login Page ── */
.fi-simple-layout {
    background: #fafaf9;
}

/* ── Scrollbar (subtle) ── */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.15);
}

/* ── Selection ── */
::selection {
    background: rgba(196, 125, 90, 0.2);
    color: #18181b;
}

/* ── Stat widgets: clean borders ── */
.fi-wi-stats-overview-stat {
    border: 1px solid #e4e4e7 !important;
    box-shadow: none !important;
}

/* ── Tables: tighter rows ── */
.fi-ta-row {
    border-bottom: 1px solid #f4f4f5;
}

/* ── Form sections: subtle separation ── */
.fi-fo-section {
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
}
