/* /Layout/NavMenu.razor.rz.scp.css */
/* ---------- brand ---------- */

.brand[b-9i2q70qutk] {
    display: flex;
    align-items: center;
    gap: .65rem;
    height: 56px;
    padding: 0 1rem;
    color: #fff;
    border-bottom: 1px solid var(--sidebar-border);
    flex-shrink: 0;
}

.brand__mark[b-9i2q70qutk] {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(160deg, var(--accent), color-mix(in srgb, var(--accent) 70%, #000));
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .12);
    flex-shrink: 0;
}

.brand__name[b-9i2q70qutk] { font-weight: 640; font-size: 1rem; letter-spacing: -.012em; }

/* ---------- nav ---------- */

.nav-links[b-9i2q70qutk] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .12rem;
    padding: .8rem .6rem;
    overflow-y: auto;
}

.nav-links[b-9i2q70qutk]  a.nav-link,
.nav-foot[b-9i2q70qutk]  a.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: .72rem;
    padding: .58rem .7rem;
    border-radius: 8px;
    color: var(--sidebar-text);
    font-size: .885rem;
    font-weight: 500;
    line-height: 1.1;
    text-decoration: none;
    transition: background-color .12s ease, color .12s ease;
}
.nav-foot[b-9i2q70qutk]  a.nav-link--sm { font-size: .8rem; padding: .5rem .7rem; }

.nav-link__icon[b-9i2q70qutk] {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--sidebar-muted);
    transition: color .12s ease;
}

.nav-links[b-9i2q70qutk]  a.nav-link:hover,
.nav-foot[b-9i2q70qutk]  a.nav-link:hover {
    background: var(--sidebar-hover-bg);
    color: #fff;
}
.nav-links[b-9i2q70qutk]  a.nav-link:hover .nav-link__icon,
.nav-foot[b-9i2q70qutk]  a.nav-link:hover .nav-link__icon { color: var(--sidebar-text); }

.nav-links[b-9i2q70qutk]  a.nav-link.active,
.nav-foot[b-9i2q70qutk]  a.nav-link.active {
    background: var(--sidebar-active-bg);
    color: var(--sidebar-active-text);
    font-weight: 600;
}
.nav-links[b-9i2q70qutk]  a.nav-link.active .nav-link__icon,
.nav-foot[b-9i2q70qutk]  a.nav-link.active .nav-link__icon { color: var(--accent); }

.nav-links[b-9i2q70qutk]  a.nav-link.active::before {
    content: "";
    position: absolute;
    left: -.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    border-radius: 0 3px 3px 0;
    background: var(--accent);
}

/* ---------- footer ---------- */

.nav-foot[b-9i2q70qutk] {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: .1rem;
    padding: .5rem .6rem .9rem;
    border-top: 1px solid var(--sidebar-border);
}

.nav-foot__ext[b-9i2q70qutk] {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin: .35rem 0 0 .75rem;
    color: var(--sidebar-muted);
    text-decoration: none;
    font-size: .74rem;
    font-weight: 500;
}
.nav-foot__ext:hover[b-9i2q70qutk] { color: #fff; text-decoration: none; }
.nav-foot__ext svg[b-9i2q70qutk] { opacity: .7; }
