/* _content/WebsiteBuilder.Blazor/Components/Layout/MainLayout.razor.rz.scp.css */
.site-shell[b-hd950rtrtc] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main[b-hd950rtrtc] {
    flex: 1;
}

article.content[b-hd950rtrtc] {
    min-width: 0;
}

.skip-link:focus[b-hd950rtrtc] {
    background: var(--accent-gold);
    color: var(--accent-on-primary);
    border-radius: var(--radius-sm);
}

.layout-root[b-hd950rtrtc] {
    position: relative;
    z-index: 1;
}
/* _content/WebsiteBuilder.Blazor/Components/Layout/NavMenu.razor.rz.scp.css */
/* Scoped nav overrides — global theme lives in theme.css + site.css */

.links[b-i59qi4vseu]  .nav-link.active {
    font-weight: 700;
}
/* _content/WebsiteBuilder.Blazor/Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-bj2rjtariu],
.components-reconnect-repeated-attempt-visible[b-bj2rjtariu],
.components-reconnect-failed-visible[b-bj2rjtariu],
.components-pause-visible[b-bj2rjtariu],
.components-resume-failed-visible[b-bj2rjtariu],
.components-rejoining-animation[b-bj2rjtariu] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-bj2rjtariu],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-bj2rjtariu],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-bj2rjtariu],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-bj2rjtariu],
#components-reconnect-modal.components-reconnect-retrying[b-bj2rjtariu],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-bj2rjtariu],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-bj2rjtariu],
#components-reconnect-modal.components-reconnect-failed[b-bj2rjtariu],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-bj2rjtariu] {
    display: block;
}

#components-reconnect-modal[b-bj2rjtariu] {
    /* Follow html[data-theme] and site-theme.css tokens instead of the UA Canvas / white card. */
    color-scheme: inherit;
    background-color: var(--surface-bg, var(--page-bg-elevated, #fff));
    color: var(--text-primary, #111);
    width: min(20rem, calc(100vw - 2rem));
    margin: 20vh auto;
    padding: 2rem;
    border: 1px solid var(--border-color, color-mix(in srgb, currentColor 18%, transparent));
    border-radius: var(--radius-md, 12px);
    box-shadow: var(--shadow-md, 0 12px 32px rgba(0, 0, 0, 0.14));
    font-family: var(--font-body, inherit);
    font-size: var(--text-size-body, 1rem);
    line-height: 1.45;
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-bj2rjtariu 0.5s both;
}

#components-reconnect-modal[open][b-bj2rjtariu] {
    animation: components-reconnect-modal-slideUp-b-bj2rjtariu 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-bj2rjtariu 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

/* ::backdrop does not inherit custom properties; match other site overlays. */
#components-reconnect-modal[b-bj2rjtariu]::backdrop {
    background-color: color-mix(in srgb, #0b1220 62%, transparent);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    animation: components-reconnect-modal-fadeInOpacity-b-bj2rjtariu 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-bj2rjtariu {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-bj2rjtariu {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-bj2rjtariu {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-bj2rjtariu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-bj2rjtariu] {
    margin: 0;
    text-align: center;
    color: inherit;
}

#components-reconnect-modal button[b-bj2rjtariu] {
    border: 1px solid var(--btn-primary-border, var(--btn-primary-bg, var(--accent-gold, #f5b335)));
    background-color: var(--btn-primary-bg, var(--accent-gold, #f5b335));
    color: var(--btn-primary-text, var(--accent-on-primary, #1a1b1b));
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.45rem 1.35rem;
    border-radius: var(--radius-sm, 8px);
    cursor: pointer;
    transition: background-color 0.14s ease, filter 0.14s ease;
}

#components-reconnect-modal button:hover[b-bj2rjtariu] {
    background-color: var(--btn-primary-hover-bg, var(--btn-primary-bg, var(--accent-gold, #f5b335)));
}

#components-reconnect-modal button:active[b-bj2rjtariu] {
    filter: brightness(0.96);
}

#components-reconnect-modal button:focus-visible[b-bj2rjtariu] {
    outline: none;
    box-shadow: var(--focus-ring, 0 0 0 3px color-mix(in srgb, var(--accent-gold, #f5b335) 45%, transparent));
}

.components-rejoining-animation[b-bj2rjtariu] {
    position: relative;
    width: 80px;
    height: 80px;
}

.components-rejoining-animation div[b-bj2rjtariu] {
    position: absolute;
    border: 3px solid var(--accent-primary, var(--accent-gold, #f5b335));
    opacity: 1;
    border-radius: 50%;
    animation: components-rejoining-animation-b-bj2rjtariu 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2)[b-bj2rjtariu] {
    animation-delay: -0.5s;
}

@keyframes components-rejoining-animation-b-bj2rjtariu {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
