/* _content/LehgupWebsite/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-rml26bcm6l] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-rml26bcm6l] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.layout[b-rml26bcm6l] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.layout__body[b-rml26bcm6l] {
    flex: 1;
}

.skip-link[b-rml26bcm6l] {
    position: absolute;
    left: 1.5rem;
    top: -9999px;
    padding: 0.65rem 1rem;
    border-radius: 0.75rem;
    background: var(--color-primary, #073870);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    z-index: 2000;
    transition: transform 0.3s ease;
}

.skip-link:focus[b-rml26bcm6l] {
    top: 1rem;
    transform: translateY(0);
}

.site-header[b-rml26bcm6l] {
    position: sticky;
    top: 0;
    z-index: 1500;
    backdrop-filter: blur(var(--header-blur, 18px));
    background: var(--header-surface, rgba(7, 28, 60, 0.78));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner[b-rml26bcm6l] {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-header__brand[b-rml26bcm6l] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    font-family: var(--font-family-sans, "Segoe UI", "Inter", sans-serif);
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-header__nav[b-rml26bcm6l] {
    display: inline-flex;
    align-items: center;
    gap: 1.85rem;
}

.site-header__mark[b-rml26bcm6l] {
    display: block;
    width: clamp(4.75rem, 12vw, 6.5rem);
    height: auto;
    max-height: 2.5rem;
    padding: 0.08rem 0.25rem;
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(7, 56, 112, 0.2);
    box-shadow: 0 6px 16px rgba(4, 18, 44, 0.25);
    object-fit: contain;
}

.site-header__link[b-rml26bcm6l] {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.35rem 0;
    transition: color 0.2s ease;
}

.site-header__link:hover[b-rml26bcm6l],
.site-header__link:focus-visible[b-rml26bcm6l] {
    color: #fff;
}

.site-header__name[b-rml26bcm6l] {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-header__brand:hover[b-rml26bcm6l],
.site-header__brand:focus-visible[b-rml26bcm6l] {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    outline: none;
}

.site-header__brand:focus-visible[b-rml26bcm6l] {
    outline: 3px solid rgba(103, 196, 12, 0.65);
    outline-offset: 3px;
}

.site-header__brand:focus-visible .site-header__name[b-rml26bcm6l] {
    color: #fff;
}

.site-header__link[b-rml26bcm6l]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgba(103, 196, 12, 0.85);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-header__link:hover[b-rml26bcm6l]::after,
.site-header__link:focus-visible[b-rml26bcm6l]::after {
    transform: scaleX(1);
}

.site-header__cta[b-rml26bcm6l] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.35rem;
    border-radius: 999px;
    background: var(--color-accent, #67c40c);
    color: #041430;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(103, 196, 12, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 40rem) {
    .site-header__inner[b-rml26bcm6l] {
        flex-wrap: nowrap;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        align-items: center;
    }

    .site-header__brand[b-rml26bcm6l] {
        min-width: 0;
    }

    .site-header__nav[b-rml26bcm6l] {
        width: auto;
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 0.75rem;
        margin-left: auto;
    }

    .site-header__link[b-rml26bcm6l] {
        display: none;
    }

    .site-header__cta[b-rml26bcm6l] {
        padding: 0.5rem 1.05rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
}

