/* Zenith-style dark sidebar for Blazor.Bootstrap Sidebar. Shared by Focsle and Helmsman. */
:root {
    --bb-sidebar-background-color: #2d3748;
    --bb-sidebar-top-row-background-color: #1a202c;
    --bb-sidebar-top-row-border-color: rgba(255, 255, 255, 0.2);
    --bb-sidebar-title-text-color: #ffffff;
    --bb-sidebar-brand-icon-color: #ffffff;
    --bb-sidebar-title-badge-text-color: #ffffff;
    --bb-sidebar-title-badge-background-color: rgba(255, 255, 255, 0.2);
    --bb-sidebar-navbar-toggler-icon-color: #ffffff;
    --bb-sidebar-navbar-toggler-background-color: rgba(255, 255, 255, 0.1);
    --bb-sidebar-content-border-color: rgba(255, 255, 255, 0.2);
    --bb-sidebar-nav-item-text-color: #ffffff;
    --bb-sidebar-nav-item-text-active-color-rgb: 255, 255, 255;
    --bb-sidebar-nav-item-text-hover-color: rgba(255, 255, 255, 0.9);
    --bb-sidebar-nav-item-text-active-color: rgba(255, 255, 255, 0.95);
    --bb-sidebar-nav-item-background-hover-color: rgba(255, 255, 255, 0.1);
    --bb-sidebar-nav-item-group-background-color: rgba(255, 255, 255, 0.08);
}

/* Empty sidebar when not logged in (Zenith-style) */
.sidebar-minimal {
    width: 70px;
    min-height: 100vh;
    background: var(--bb-sidebar-background-color);
    flex-shrink: 0;
}
