/* ========================================================================== */
/* ADMIN SIDE NAV VERSION                                                        */
/* ========================================================================== */

.admin-sidenav {
    position: fixed;
    top: var(--topnav-height);
    left: 0;
    width: var(--sidenav-width);
    height: calc(100vh - var(--topnav-height));
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1px 14px;
    z-index: 1500;
    overflow-y: auto;
}

.admin-sidenav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin: 14px 18px;
}

.admin-sidenav-header {
    padding: 10px 12px 18px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 14px;
}

.admin-sidenav-title {
    color: white;
    font-size: 0.95rem;
    font-weight: var(--nav-font-weight-strong);
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.admin-sidenav-subtitle {
    margin-top: 6px;
    font-size: 0.85rem;
    font-weight: var(--nav-font-weight-regular);
    color: rgba(255,255,255,0.65);
}

.admin-sidenav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-sidenav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 12px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: var(--nav-font-weight-medium);
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

    .admin-sidenav-link:hover {
        background: rgba(255,255,255,0.08);
        transform: translateX(2px);
        color: white;
    }

    .admin-sidenav-link.active {
        background: rgba(61,165,255,0.18);
        border: 1px solid rgba(61,165,255,0.30);
        color: white;
        box-shadow: 0 10px 22px rgba(0,0,0,0.15);
    }

.admin-ico {
    font-size: 1.05rem;
    width: 22px;
    display: inline-flex;
    justify-content: center;
}

