#fx-sidebar {
    width: 220px;
    min-height: 100vh;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background-color: #07000E;
    border-right: 1.5px solid #DBE9FF;
    box-shadow: 2px 0 20px rgba(219, 233, 255, 0.12);
}

#fx-sidebar .fx-brand,
#mobileNav .fx-brand {
    padding: 0.4rem 0.25rem 1.25rem;
}

#fx-sidebar .fx-brand-logo,
#mobileNav .fx-brand-logo {
    width: 110px;
    height: auto;
}

/* Shared nav link styles for both desktop and offcanvas */
#fx-sidebar .fx-nav-link,
#mobileNav .fx-nav-link {
    border-radius: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.15s, background 0.15s;
}

#fx-sidebar .fx-nav-link:hover,
#mobileNav .fx-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

/* Active state — blue pill */
#fx-sidebar .fx-nav-link.active,
#mobileNav .fx-nav-link.active {
    color: #fff;
    background: #2563eb;
}

#fx-sidebar .fx-nav-link.active .fx-nav-icon,
#mobileNav .fx-nav-link.active .fx-nav-icon {
    color: #fff;
}

/* Icon */
#fx-sidebar .fx-nav-icon,
#mobileNav .fx-nav-icon {
    width: 1.1rem;
    display: inline-flex;
    justify-content: center;
    font-size: 1rem;
}

/* Chevron */
#fx-sidebar .fx-nav-chevron,
#mobileNav .fx-nav-chevron {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    transition: transform 0.2s;
}

#fx-sidebar .fx-nav-dropdown.open .fx-nav-chevron,
#mobileNav .fx-nav-dropdown.open .fx-nav-chevron {
    transform: rotate(180deg);
}

/* Offcanvas background override */
#mobileNav {
    background-color: #050b1a !important;
    border-right: 1px solid rgba(255, 255, 255, 0.07) !important;
}

#mobileNav .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 1rem;
}

#mobileNav .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.6;
}
