@import '_content/Vahary.Branding.Shell/Vahary.Branding.Shell.s4qbuudqe8.bundle.scp.css';
@import '_content/Vahary.Licensing.Lifecycle.Blazor/Vahary.Licensing.Lifecycle.Blazor.ggl9zfpzkz.bundle.scp.css';

/* /Components/Layout/GreeterLayout.razor.rz.scp.css */
/* Greeter Mode chrome — compact, handheld, bottom-anchored. Uses the semantic --visitor-* tokens so it
   inherits tenant (later per-surface) branding. */
.greeter-shell[b-6e17hnq54y] {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: var(--visitor-bg);
}

.greeter-bar[b-6e17hnq54y] {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.85rem 1.1rem;
    /* Ink follows the fill, not a literal. The three stops are all derived from --visitor-primary, so
       whatever ink that fill answers to is the only one that tracks it — including a tenant who picks
       a light primary, where white was already ~2.5:1 here. */
    color: var(--visitor-on-primary, #fff);
    background: linear-gradient(155deg,
        color-mix(in srgb, var(--visitor-primary) 82%, #fff) 0%,
        var(--visitor-primary) 55%,
        color-mix(in srgb, var(--visitor-primary) 70%, #000) 100%);
}

.greeter-brand[b-6e17hnq54y] {
    font-family: var(--v-font-display, 'Tektur', system-ui, sans-serif);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

.greeter-tag[b-6e17hnq54y] {
    font-size: 0.9rem;
    opacity: 0.85;
}

.greeter-exit[b-6e17hnq54y] {
    margin-inline-start: auto;
    color: var(--visitor-on-primary, #fff);
    font-size: 0.85rem;
    text-decoration: none;
    opacity: 0.9;
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-pill, 999px);
    background: rgba(255, 255, 255, 0.16);
}

.greeter-main[b-6e17hnq54y] {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.1rem;
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-o9jcpntrhd],
.components-reconnect-repeated-attempt-visible[b-o9jcpntrhd],
.components-reconnect-failed-visible[b-o9jcpntrhd],
.components-pause-visible[b-o9jcpntrhd],
.components-resume-failed-visible[b-o9jcpntrhd],
.components-rejoining-animation[b-o9jcpntrhd] {
    display: none;
}

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


#components-reconnect-modal[b-o9jcpntrhd] {
    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-o9jcpntrhd 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-o9jcpntrhd {
    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/Greeter.razor.rz.scp.css */
/* Greeter Mode page — handheld, thumb-first. 44px+ targets; bottom-anchored primary actions. */
.g-kicker[b-wnh88baj7s] {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--visitor-primary);
}

.g-h1[b-wnh88baj7s] {
    font-family: var(--v-font-display, 'Tektur', system-ui, sans-serif);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0.4rem 0 1.1rem;
}

.g-scanrow[b-wnh88baj7s] { display: flex; gap: 0.5rem; }
.g-scanrow .g-scaninput[b-wnh88baj7s] { flex: 1; min-height: 3.25rem; font-size: 1.05rem; }
.g-scanrow .visitor-btn[b-wnh88baj7s] { min-height: 3.25rem; white-space: nowrap; }
.g-hint[b-wnh88baj7s] { color: var(--visitor-muted); font-size: 0.85rem; margin-top: 0.5rem; }

.g-cam[b-wnh88baj7s] { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.g-video[b-wnh88baj7s] {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-xl, 1rem);
    background: #000;
}

.g-or[b-wnh88baj7s] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--visitor-muted);
    font-size: 0.85rem;
    margin: 1rem 0;
}
.g-or[b-wnh88baj7s]::before, .g-or[b-wnh88baj7s]::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--visitor-border);
}

.g-search[b-wnh88baj7s] {
    display: flex;
    gap: 0.5rem;
}
.g-search .visitor-input[b-wnh88baj7s] { flex: 1; min-height: 3rem; }
.g-search .visitor-btn[b-wnh88baj7s] { min-height: 3rem; }

.g-results[b-wnh88baj7s] {
    margin-top: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.g-row[b-wnh88baj7s] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-align: start;
    min-height: 3.25rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--visitor-border);
    border-radius: var(--radius-lg, 0.75rem);
    background: var(--visitor-surface);
    color: var(--visitor-text);
    font: inherit;
    cursor: pointer;
}
/* .g-row-av removed with the 🙂 it styled — VisitorAvatar owns its own size and treatment now, and
   scoped CSS cannot reach a child component anyway. (CC-4 / FD-4.) */
.g-row-body[b-wnh88baj7s] { display: flex; flex-direction: column; }
.g-row-name[b-wnh88baj7s] { font-weight: 600; font-size: 1.05rem; }
.g-row-sub[b-wnh88baj7s] { color: var(--visitor-muted); font-size: 0.85rem; }
.g-row-go[b-wnh88baj7s] { margin-inline-start: auto; color: var(--visitor-primary); font-size: 1.4rem; }

.g-empty[b-wnh88baj7s] {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--visitor-muted);
}

.g-card[b-wnh88baj7s] {
    background: var(--visitor-surface);
    border: 1px solid var(--visitor-border);
    border-radius: var(--radius-xl, 1rem);
    padding: 1.6rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}
/* Layout only. The portrait itself is VisitorAvatar (size lg = 8rem, with its own ring): a scoped
   stylesheet cannot style a child component, so this wrapper does the centring and spacing the old
   .g-photo rule provided and the component does the rest. (CC-4 / FD-4.) */
.g-photo-wrap[b-wnh88baj7s] {
    display: flex;
    justify-content: center;
    margin: 0 auto 1rem;
}

.g-name[b-wnh88baj7s] {
    font-family: var(--v-font-display, 'Tektur', system-ui, sans-serif);
    font-size: 2rem;
    font-weight: 700;
}
.g-meta[b-wnh88baj7s] { color: var(--visitor-muted); margin-top: 0.6rem; line-height: 1.6; }
.g-meta strong[b-wnh88baj7s] { color: var(--visitor-text); }

/* Neutral hold — greeter-only signal; carries no reason. */
.g-kicker-hold[b-wnh88baj7s] { color: var(--visitor-warning); }
.g-wait[b-wnh88baj7s] { color: var(--visitor-muted); margin-top: 0.6rem; }
.g-holdchip[b-wnh88baj7s] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill, 999px);
    font-weight: 700;
    color: var(--visitor-warning);
    background: var(--visitor-warning-bg);
    border: 1.5px solid var(--visitor-warning);
}

.g-dock[b-wnh88baj7s] {
    margin-top: auto;
    padding-top: 1.1rem;
    display: flex;
}
.g-dock .visitor-btn[b-wnh88baj7s] { flex: 1; }
/* Shown instead of the Walk-up button when this greeter can't register one. (CC-10.) */
.g-dock-note[b-wnh88baj7s] { flex: 1; text-align: center; color: var(--visitor-muted); font-size: .9375rem; }
.g-dock-2[b-wnh88baj7s] { gap: 0.75rem; }
.g-dock-2 .g-go[b-wnh88baj7s] { flex: 1; }

/* Both ends of this gradient are the primary fill, so the label takes the fill's ink rather than a
   literal white. That literal was safe only while the accent was dark; the token set's dark-theme
   accent is now #A78BFA, where white is 2.72:1 and the 12%-white top stop is 2.38:1. */
.g-go[b-wnh88baj7s] {
    background: linear-gradient(150deg,
        color-mix(in srgb, var(--visitor-primary) 88%, #fff),
        var(--visitor-primary));
    color: var(--visitor-on-primary, #fff);
}

/* Success — full-card, persistent (does not fade). */
.g-hero.g-win[b-wnh88baj7s] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
}
.g-tick[b-wnh88baj7s] {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 3.4rem;
    color: var(--visitor-on-primary, #fff);
    background: linear-gradient(150deg,
        color-mix(in srgb, var(--visitor-primary) 85%, #fff),
        var(--visitor-primary));
    box-shadow: 0 12px 30px -12px color-mix(in srgb, var(--visitor-primary) 60%, transparent);
}
.g-win-name[b-wnh88baj7s] {
    font-family: var(--v-font-display, 'Tektur', system-ui, sans-serif);
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1rem;
}
.g-win-sub[b-wnh88baj7s] { color: var(--visitor-muted); }
