/* _content/APIDocumentationHub/Views/Shared/_Layout.cshtml.rz.scp.css */
:root[b-qraecutigr] {
    --primary: #0052cc;
    --text-light: #ffffff;
    --bg-dark: #1a1a1a;
    --hover-bg: #003d99;
    --radius: 8px;
}

header[b-qraecutigr] {
    background-color: #1a1a1a;
    font-family: "Roboto", sans-serif;
}

.navbar[b-qraecutigr] {
}

.container[b-qraecutigr] {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 22px 15px;
}

.brand img.logo[b-qraecutigr] {
    display: block;
    width: 165px;
    height: 24px;
}

.toggler[b-qraecutigr] {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.toggler-icon[b-qraecutigr] {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    position: relative;
}

.toggler-icon[b-qraecutigr]::before,
.toggler-icon[b-qraecutigr]::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    left: 0;
}

.toggler-icon[b-qraecutigr]::before {
    top: -8px;
}

.toggler-icon[b-qraecutigr]::after {
    top: 8px;
}

.collapse[b-qraecutigr] {
    display: flex;
    gap: 20px;
}

.nav[b-qraecutigr] {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-item[b-qraecutigr] {}

.nav-link[b-qraecutigr] {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: var(--radius);
    transition: background-color 0.2s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .toggler[b-qraecutigr] {
        display: block;
    }

    .collapse[b-qraecutigr] {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 16px;
    }

    .collapse.show[b-qraecutigr] {
        display: flex;
    }

    .nav[b-qraecutigr] {
        flex-direction: column;
        gap: 10px;
    }
}
