@font-face {
    font-family: public_sans;
    src: url("/assets/fonts/custom/PublicSans-VariableFont_wght.ttf")
}

.system-nav-bar {
    background-color: #1a1d21;
    border-bottom: 1px solid #2a2d31;
    padding: 24px 0;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    font-family: public_sans, sans-serif;
}

#page-topbar {
    position: fixed !important;
    top: 95px !important;
    z-index: 1002;
}

.system-nav-container {
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    gap: 32px;
    align-items: center;
    position: relative;
}

.system-nav-logo {
    display: flex;
    align-items: center;
    margin-right: 16px;
}

.system-nav-logo img {
    height: 35px;
    width: auto;
}

.system-nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    padding-top: 0 !important;
}

.system-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.7;
    transition: opacity 0.2s;
    position: relative;
}

.system-nav-link.active {
    font-weight: 600;
    opacity: 1;
}

.system-nav-link:hover {
    opacity: 1;
}

.system-nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.system-nav-hamburger:hover {
    opacity: 0.8;
}

/* Mobile styles */
@media (max-width: 768px) {
    .system-nav-bar {
        padding: 24px 0;
    }

    .content-wrapper {
        padding-top: 100px;
    }

    #layout-wrapper {
        padding-top: 96px;
    }

    .system-nav-container {
        flex-wrap: wrap;
        padding: 0 0.5rem;
    }

    .system-nav-logo {
        margin-right: auto;
    }

    .system-nav-logo img {
        height: 35px;
    }

    .system-nav-hamburger {
        display: block;
    }

    .system-nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        background-color: #1a1d21;
        border-top: 1px solid #2a2d31;
        padding-top: 1rem;
    }

    .system-nav-links.open {
        display: flex;
    }

    .system-nav-link {
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid #2a2d31;
    }

    .system-nav-link.active {
        background-color: #252a2f;
        padding-left: 1rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding-right: 1rem;
    }
}
