/* /Components/Layout/AppLayout.razor.rz.scp.css */
.skip-link[b-g6pxe9fs4a] {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    background-color: var(--color-burgundy);
    color: var(--color-white);
    padding: 0.75rem 1rem;
    border-radius: 0 0 var(--radius-button) 0;
}

.skip-link:focus[b-g6pxe9fs4a] {
    left: 0;
}

.app-shell[b-g6pxe9fs4a] {
    min-height: 100vh;
    background-color: var(--color-sand);
    color: var(--color-ink);
    display: flex;
    flex-direction: column;
}

.app-header[b-g6pxe9fs4a] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.wordmark[b-g6pxe9fs4a] {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-burgundy);
    text-decoration: none;
}

.wordmark span[b-g6pxe9fs4a] {
    color: var(--color-coral-text-safe);
}

.header-actions[b-g6pxe9fs4a] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.signed-in-user[b-g6pxe9fs4a] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-ui);
    font-size: 0.85rem;
}

.signed-in-label[b-g6pxe9fs4a] {
    color: var(--color-muted);
}

.signed-in-user strong[b-g6pxe9fs4a] {
    max-width: 18rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[b-g6pxe9fs4a] .language-selector {
    display: flex;
    gap: 0.25rem;
}

[b-g6pxe9fs4a] .language-selector-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    min-height: 2.25rem;
    border-radius: var(--radius-button);
    color: var(--color-ink);
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid transparent;
}

[b-g6pxe9fs4a] .language-selector-link:hover {
    background-color: var(--color-sand);
}

[b-g6pxe9fs4a] .language-selector-link.active {
    border-color: var(--color-burgundy);
    color: var(--color-burgundy);
}

.role-badge[b-g6pxe9fs4a] {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-burgundy);
    background-color: var(--color-sand);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-button);
    padding: 0.35rem 0.85rem;
}

.app-body[b-g6pxe9fs4a] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-nav[b-g6pxe9fs4a] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.nav-item[b-g6pxe9fs4a] {
    display: flex;
}

.nav-link[b-g6pxe9fs4a], .nav-link-button[b-g6pxe9fs4a] {
    display: inline-flex;
    align-items: center;
    min-height: var(--button-height);
    padding: 0 1rem;
    border-radius: var(--radius-button);
    color: var(--color-ink);
    text-decoration: none;
    font-family: var(--font-ui);
    background: none;
    border: none;
    cursor: pointer;
}

.nav-link:hover[b-g6pxe9fs4a], .nav-link-button:hover[b-g6pxe9fs4a] {
    background-color: var(--color-sand);
}

.nav-link.active[b-g6pxe9fs4a] {
    background-color: var(--color-burgundy);
    color: var(--color-white);
}

.app-content[b-g6pxe9fs4a] {
    flex: 1;
    padding: 1.5rem;
}

@media (min-width: 641px) {
    .app-body[b-g6pxe9fs4a] {
        flex-direction: row;
    }

    .app-nav[b-g6pxe9fs4a] {
        flex-direction: column;
        width: 220px;
        border-bottom: none;
        border-right: 1px solid var(--color-border);
    }
}

*:focus-visible[b-g6pxe9fs4a] {
    outline: 3px solid var(--color-coral-text-safe);
    outline-offset: 2px;
}
/* /Components/Layout/OperationalLayout.razor.rz.scp.css */
.skip-link[b-slvrdseyut] {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    background-color: var(--color-burgundy);
    color: var(--color-white);
    padding: 0.75rem 1rem;
    border-radius: 0 0 var(--radius-button) 0;
}

.skip-link:focus[b-slvrdseyut] {
    left: 0;
}

.operational-shell[b-slvrdseyut] {
    min-height: 100vh;
    background-color: var(--color-cream);
    color: var(--color-ink);
    display: flex;
    flex-direction: column;
}

.operational-header[b-slvrdseyut] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.wordmark[b-slvrdseyut] {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-burgundy);
    text-decoration: none;
}

.wordmark span[b-slvrdseyut] {
    color: var(--color-coral-text-safe);
}

.logout-button[b-slvrdseyut] {
    min-height: var(--button-height);
    min-width: 48px;
    padding: 0 1rem;
    border-radius: var(--radius-button);
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    color: var(--color-ink);
    font-family: var(--font-ui);
    cursor: pointer;
}

.operational-content[b-slvrdseyut] {
    flex: 1;
    padding: 1rem;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

*:focus-visible[b-slvrdseyut] {
    outline: 3px solid var(--color-coral-text-safe);
    outline-offset: 2px;
}
/* /Components/Layout/PublicLayout.razor.rz.scp.css */
.skip-link[b-verthsnafg] {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    background-color: var(--color-burgundy);
    color: var(--color-white);
    padding: 0.75rem 1rem;
    border-radius: 0 0 var(--radius-button) 0;
}

.skip-link:focus[b-verthsnafg] {
    left: 0;
}

.public-shell[b-verthsnafg] {
    min-height: 100vh;
    background-color: var(--color-cream);
    color: var(--color-ink);
    display: flex;
    flex-direction: column;
}

.public-header[b-verthsnafg] {
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

[b-verthsnafg] .language-selector {
    display: flex;
    gap: 0.25rem;
}

[b-verthsnafg] .language-selector-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    min-height: 2.25rem;
    border-radius: var(--radius-button);
    color: var(--color-ink);
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid transparent;
}

[b-verthsnafg] .language-selector-link:hover {
    background-color: var(--color-cream);
}

[b-verthsnafg] .language-selector-link.active {
    border-color: var(--color-burgundy);
    color: var(--color-burgundy);
}

.wordmark[b-verthsnafg] {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-burgundy);
    text-decoration: none;
}

.wordmark span[b-verthsnafg] {
    color: var(--color-coral-text-safe);
}

.public-content[b-verthsnafg] {
    flex: 1;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 1rem 1.25rem 3rem;
}

*:focus-visible[b-verthsnafg] {
    outline: 3px solid var(--color-coral-text-safe);
    outline-offset: 2px;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-7jpsopdv6j],
.components-reconnect-repeated-attempt-visible[b-7jpsopdv6j],
.components-reconnect-failed-visible[b-7jpsopdv6j],
.components-pause-visible[b-7jpsopdv6j],
.components-resume-failed-visible[b-7jpsopdv6j],
.components-rejoining-animation[b-7jpsopdv6j] {
    display: none;
}

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


#components-reconnect-modal[b-7jpsopdv6j] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-7jpsopdv6j 0.5s both;
    &[open]

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

}

#components-reconnect-modal[b-7jpsopdv6j]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-7jpsopdv6j 0.5s ease-in-out;
    opacity: 1;
}

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

#components-reconnect-modal p[b-7jpsopdv6j] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-7jpsopdv6j] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-7jpsopdv6j] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-7jpsopdv6j] {
        background-color: #6b9ed2;
    }

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

    .components-rejoining-animation div[b-7jpsopdv6j] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-7jpsopdv6j 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

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

@keyframes components-rejoining-animation-b-7jpsopdv6j {
    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;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-hero[b-tp5vfd68en] {
    text-align: center;
    padding: 2rem 0 1.5rem;
}

.home-title[b-tp5vfd68en] {
    font-family: var(--font-display);
    color: var(--color-burgundy);
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.home-lead[b-tp5vfd68en] {
    font-family: var(--font-ui);
    color: var(--color-ink);
    font-size: 1.1rem;
}

.home-cta[b-tp5vfd68en] {
    text-align: center;
}
/* /Components/Pages/Register.razor.rz.scp.css */
.register-title[b-nctt72vpob] {
    font-family: var(--font-display);
    color: var(--color-burgundy);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.register-copy[b-nctt72vpob] {
    font-family: var(--font-ui);
    color: var(--color-ink);
    margin-bottom: 1rem;
}

.wallet-actions[b-nctt72vpob] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.wallet-unavailable[b-nctt72vpob] {
    font-family: var(--font-ui);
    color: var(--color-muted);
    font-size: 0.9rem;
}

.google-wallet-button img[b-nctt72vpob] {
    height: 48px;
    display: block;
}

.apple-wallet-placeholder[b-nctt72vpob] {
    /* Placeholder do czasu podmiany na oficjalny badge Apple — zob. Operator checklist w planie. */
}
/* /Components/Shared/Alert.razor.rz.scp.css */
.bw-alert[b-rp32aemqxh] {
    border-radius: var(--radius-button);
    padding: 0.85rem 1rem;
    font-family: var(--font-ui);
    border: 1px solid transparent;
}

.bw-alert-success[b-rp32aemqxh] {
    background-color: var(--color-white);
    color: var(--color-sage);
    border-color: var(--color-sage);
}

.bw-alert-error[b-rp32aemqxh] {
    background-color: var(--color-white);
    color: var(--color-coral-text-safe);
    border-color: var(--color-coral-text-safe);
}
/* /Components/Shared/Card.razor.rz.scp.css */
.bw-card[b-7jgflzlpna] {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 1.5rem;
}
/* /Components/Shared/Field.razor.rz.scp.css */
.bw-field[b-bzooqz82yf] {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.bw-field-label[b-bzooqz82yf] {
    font-family: var(--font-ui);
    font-weight: 600;
    color: var(--color-ink);
}

[b-bzooqz82yf] .bw-field-error {
    color: var(--color-coral-text-safe);
    font-size: 0.9rem;
}

[b-bzooqz82yf] input:not([type="checkbox"]), [b-bzooqz82yf] .form-control {
    min-height: var(--button-height);
    border-radius: var(--radius-button);
    border: 1px solid var(--color-border);
    padding: 0 0.85rem;
    font-family: var(--font-ui);
    color: var(--color-ink);
    background-color: var(--color-white);
}

[b-bzooqz82yf] input:focus-visible, [b-bzooqz82yf] .form-control:focus {
    outline: 3px solid var(--color-coral-text-safe);
    outline-offset: 2px;
    box-shadow: none;
}

.bw-field-checkbox-row[b-bzooqz82yf] {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    min-height: var(--button-height);
}

.bw-field-checkbox-row .bw-field-label[b-bzooqz82yf] {
    font-weight: 400;
    padding-top: 0.2rem;
}

[b-bzooqz82yf] .bw-field-checkbox-row input[type="checkbox"] {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    accent-color: var(--color-burgundy);
}
