﻿.sidebar-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-logo {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #e2e8f0;
}

/* Menu */
.nav-menu {
    padding: 10px;
}

/* MudBlazor override */
.mud-nav-link {
    border-radius: 10px;
    margin: 4px 6px;
    padding: 10px 12px;
    color: #cbd5e1 !important;
    transition: 0.2s;
}

    .mud-nav-link:hover {
        background: rgba(59, 130, 246, 0.15);
        color: #fff !important;
    }

    .mud-nav-link.mud-nav-link-active {
        background: linear-gradient(90deg, #2563eb, #1d4ed8);
        color: #fff !important;
    }
