/*
 * Tighter sidebar nav-group vertical rhythm.
 *
 * Filament 3's vendor sidebar uses `gap-y-7` (1.75rem = 28px) both
 * on the outer `.fi-sidebar-nav` flex column and on the inner
 * `.fi-sidebar-nav-groups` list, plus `py-2` (0.5rem) on each
 * `.fi-sidebar-group-button`. With 10+ top-level nav groups
 * (Help, Carbon Rewards, Inventory, Promotions, Reports, Vendor,
 * Customer, Employee, Sales, User Management, Support, etc.)
 * the vendor default forces scroll on any laptop viewport.
 *
 * Overrides below halve the outer gap and collapse the inner gap to
 * near-zero, and trim the group-button padding so each header reads
 * as ~22px tall. Net: twice the groups visible without scroll. Keep
 * the nav-label typography untouched so the groups still scan
 * cleanly.
 *
 * Ported from carbon-c6/resources/css/filament/admin/theme.css.
 */
.fi-sidebar-nav {
    gap: 0.5rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.fi-sidebar-nav .fi-sidebar-nav-groups {
    gap: 0.125rem;
}

.fi-sidebar-group > .fi-sidebar-group-button {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
