/* ============================================
   FORCE BLUE SIDEBAR GRADIENT (OVERRIDE)
   ============================================ */

/* Blazor default sidebar */
.sidebar {
    background: linear-gradient( 180deg, #0d47a1 0%, /* deep blue */
    #1565c0 45%, /* material blue */
    #1a237e 100% /* dark indigo */
    ) !important;
}

/* Sometimes the gradient is on nav-menu instead */
.nav-menu {
    background: linear-gradient( 180deg, #0d47a1 0%, #1565c0 45%, #1a237e 100% ) !important;
}

    /* Sidebar text + icons */
    .sidebar *,
    .nav-menu * {
        color: #e3f2fd !important;
    }

    /* Hover state */
    .sidebar a:hover,
    .nav-menu a:hover {
        background-color: rgba(255, 255, 255, 0.15) !important;
        color: #ffffff !important;
    }

    /* Active menu item */
    .sidebar .active,
    .nav-menu .active {
        background-color: rgba(255, 255, 255, 0.25) !important;
        border-radius: 6px;
    }


