/* ========================================================================== */
/* ADMIN TOP NAV VERSION                                                           */
/* ========================================================================== */

.admin-subnav {
    position: sticky;
    top: var(--topnav-height); /* 👈 exakt top-nav höjd */
    z-index: 1500; /* 👈 under 2000 men över resten */
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    display: flex;
    gap: 22px;
    padding: 14px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


.admin-subnav-title {
    font-size: 17px;
    font-weight: var(--nav-font-weight-strong);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    margin-right: 32px;
    border-right: 2px solid rgba(255, 255, 255, 0.25);
    padding-right: 32px;
}

.admin-subnav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: var(--nav-font-weight-medium);
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 3px;
    transition: color 0.25s ease, border-color 0.25s ease;
    border-bottom: 2px solid transparent;
}

    .admin-subnav a:hover,
    .admin-subnav a.active {
        color: #3da5ff;
        border-bottom: 2px solid #3da5ff;
    }

