/* /Components/Layout/MainLayout.razor.rz.scp.css */
.site-shell[b-rgm5senzcp] {
    min-height: 100vh;
}

.site-header[b-rgm5senzcp] {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(7, 11, 8, 0.78);
    backdrop-filter: blur(14px);
}

.site-brand-block[b-rgm5senzcp] {
    display: grid;
    gap: 0.15rem;
}

.site-brand[b-rgm5senzcp],
.site-nav a[b-rgm5senzcp],
.site-logout button[b-rgm5senzcp] {
    color: #f2ead8;
    text-decoration: none;
}

.site-brand[b-rgm5senzcp] {
    font-size: 1.05rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.site-brand-tag[b-rgm5senzcp] {
    color: #9baa95;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.site-nav[b-rgm5senzcp] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.site-nav a[b-rgm5senzcp],
.site-logout button[b-rgm5senzcp] {
    min-height: 2.5rem;
    padding: 0 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    display: inline-grid;
    place-items: center;
}

.site-logout[b-rgm5senzcp] {
    margin: 0;
}

.site-logout button[b-rgm5senzcp] {
    font: inherit;
    cursor: pointer;
}

.site-main[b-rgm5senzcp] {
    min-height: calc(100vh - 4.5rem);
}

.workspace-nav[b-rgm5senzcp] {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
    padding: 1rem 1.25rem 0;
}

.workspace-link[b-rgm5senzcp] {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(135deg, rgba(20, 34, 24, 0.92), rgba(8, 15, 10, 0.9)),
        rgba(255, 255, 255, 0.03);
    color: #f2ead8;
    text-decoration: none;
}

.workspace-link span[b-rgm5senzcp] {
    font-size: 1rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.workspace-link small[b-rgm5senzcp] {
    color: #9fb194;
}

.workspace-link-active[b-rgm5senzcp] {
    border-color: rgba(181, 222, 118, 0.38);
    box-shadow: 0 0 0 1px rgba(181, 222, 118, 0.14) inset;
}

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

@media (max-width: 760px) {
    .site-header[b-rgm5senzcp] {
        align-items: start;
        flex-direction: column;
    }

    .workspace-nav[b-rgm5senzcp] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-4onfdr48lp],
.components-reconnect-repeated-attempt-visible[b-4onfdr48lp],
.components-reconnect-failed-visible[b-4onfdr48lp],
.components-pause-visible[b-4onfdr48lp],
.components-resume-failed-visible[b-4onfdr48lp],
.components-rejoining-animation[b-4onfdr48lp] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-4onfdr48lp {
    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/Dashboard.razor.rz.scp.css */
.dashboard-shell[b-y60h0uev3g] {
    display: grid;
    gap: 1.5rem;
    padding: clamp(1.25rem, 4vw, 3rem);
}

.workflow-strip[b-y60h0uev3g] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.workflow-card[b-y60h0uev3g] {
    display: grid;
    gap: 0.35rem;
    padding: 1.1rem 1.2rem;
    border-radius: 1.3rem;
    text-decoration: none;
    background: linear-gradient(140deg, rgba(14, 25, 18, 0.9), rgba(8, 14, 10, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.workflow-card span[b-y60h0uev3g] {
    color: #f2ead8;
    font-size: 0.98rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.workflow-card small[b-y60h0uev3g] {
    color: #aab59c;
}

.workflow-card-primary[b-y60h0uev3g] {
    border-color: rgba(181, 222, 118, 0.34);
    background: linear-gradient(140deg, rgba(42, 65, 32, 0.95), rgba(12, 22, 15, 0.9));
}

.dashboard-header[b-y60h0uev3g],
.dashboard-card-head[b-y60h0uev3g],
.match-card[b-y60h0uev3g],
.match-card-side[b-y60h0uev3g] {
    display: flex;
    gap: 1rem;
}

.dashboard-header[b-y60h0uev3g],
.dashboard-card-head[b-y60h0uev3g] {
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
}

.dashboard-label[b-y60h0uev3g] {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: #acb79f;
}

.dashboard-header h1[b-y60h0uev3g],
.dashboard-card-head h2[b-y60h0uev3g] {
    margin: 0.2rem 0 0;
}

.dashboard-grid[b-y60h0uev3g] {
    display: grid;
    grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
    gap: 1.2rem;
}

.dashboard-card[b-y60h0uev3g] {
    display: grid;
    gap: 1rem;
    padding: 1.3rem;
    border-radius: 1.4rem;
    background: rgba(8, 15, 10, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-card label[b-y60h0uev3g] {
    display: grid;
    gap: 0.5rem;
    color: #d7dfd0;
}

.dashboard-card input[b-y60h0uev3g] {
    min-height: 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #f2ead8;
    padding: 0 1rem;
}

.create-button[b-y60h0uev3g] {
    min-height: 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #f2ead8;
    transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.create-button[b-y60h0uev3g] {
    cursor: pointer;
    border-color: rgba(181, 222, 118, 0.4) !important;
    background: rgba(181, 222, 118, 0.16) !important;
}

.create-button[b-y60h0uev3g] {
    display: inline-grid;
    place-items: center;
    text-decoration: none;
}

.create-button:hover[b-y60h0uev3g],
.match-card-links a:hover[b-y60h0uev3g],
.workflow-card:hover[b-y60h0uev3g] {
    transform: translateY(-1px);
    border-color: rgba(181, 222, 118, 0.28);
}

.dashboard-matches[b-y60h0uev3g] {
    display: grid;
    gap: 0.75rem;
}

.match-card[b-y60h0uev3g] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    align-items: start;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.match-card strong[b-y60h0uev3g],
.match-card small[b-y60h0uev3g],
.match-card span[b-y60h0uev3g] {
    display: block;
}

.match-card small[b-y60h0uev3g],
.dashboard-empty[b-y60h0uev3g],
.dashboard-error[b-y60h0uev3g] {
    color: #aab59c;
}

.match-card-side[b-y60h0uev3g] {
    flex-direction: column;
    align-items: end;
}

.match-card-links[b-y60h0uev3g] {
    display: flex;
    gap: 0.7rem;
    grid-column: 1 / -1;
    flex-wrap: wrap;
}

.match-card-links a[b-y60h0uev3g] {
    min-height: 2.6rem;
    padding: 0 0.95rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    color: #f2ead8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 900px) {
    .workflow-strip[b-y60h0uev3g],
    .dashboard-grid[b-y60h0uev3g] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-shell[b-61yletnbgu] {
    position: relative;
    min-height: calc(100vh - 4.5rem);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 440px);
    gap: 3rem;
    align-content: start;
    align-items: center;
    padding: 2rem clamp(1.5rem, 4vw, 4rem) 3rem;
}

.home-backdrop[b-61yletnbgu] {
    position: absolute;
    inset: auto;
    pointer-events: none;
    filter: blur(18px);
    opacity: 0.7;
}

.home-backdrop-left[b-61yletnbgu] {
    top: 10%;
    left: -8rem;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(164, 18, 18, 0.34) 0%, rgba(164, 18, 18, 0) 68%);
}

.home-backdrop-right[b-61yletnbgu] {
    right: -8rem;
    bottom: 12%;
    width: 22rem;
    height: 22rem;
    background: radial-gradient(circle, rgba(214, 180, 102, 0.16) 0%, rgba(214, 180, 102, 0) 70%);
}

.hero-copy[b-61yletnbgu],
.table-stage[b-61yletnbgu] {
    position: relative;
    z-index: 1;
}

.hero-copy[b-61yletnbgu] {
    max-width: 42rem;
    display: grid;
    gap: 1.5rem;
}

.eyebrow[b-61yletnbgu] {
    margin: 0;
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #b4ba95;
}

.hero-copy h1[b-61yletnbgu] {
    margin: 0;
    line-height: 0.95;
    font-weight: 600;
}

.hero-copy h1[b-61yletnbgu] {
    font-size: clamp(3.4rem, 10vw, 6.6rem);
    max-width: 11ch;
}

.feature-list[b-61yletnbgu] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-list span[b-61yletnbgu],
.score-strip div[b-61yletnbgu] {
    border: 1px solid rgba(244, 235, 214, 0.12);
    background: rgba(11, 18, 13, 0.52);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.feature-list span[b-61yletnbgu] {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-size: 0.92rem;
    color: #e8ddc2;
}

.status-banner[b-61yletnbgu] {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    border: 1px solid transparent;
}

.status-banner strong[b-61yletnbgu] {
    font-weight: 600;
}

.status-banner-error[b-61yletnbgu] {
    background: rgba(153, 40, 34, 0.2);
    border-color: rgba(209, 98, 90, 0.4);
    color: #ffd7d2;
}

.status-banner-success[b-61yletnbgu] {
    background: rgba(36, 95, 54, 0.22);
    border-color: rgba(116, 186, 128, 0.32);
    color: #d5f4d7;
}

.status-banner-muted[b-61yletnbgu] {
    background: rgba(191, 166, 101, 0.12);
    border-color: rgba(191, 166, 101, 0.2);
    color: #ede0b6;
}

.home-actions[b-61yletnbgu] {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    flex-wrap: wrap;
}

.google-button[b-61yletnbgu],
.primary-link[b-61yletnbgu],
.ghost-link[b-61yletnbgu] {
    border-radius: 1.2rem;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.google-button[b-61yletnbgu] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(247, 242, 233, 0.98), rgba(234, 225, 208, 0.96));
    color: #141510;
    box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.28);
}

.google-button:hover[b-61yletnbgu],
.google-button:focus-visible[b-61yletnbgu],
.primary-link:hover[b-61yletnbgu],
.primary-link:focus-visible[b-61yletnbgu],
.ghost-link:hover[b-61yletnbgu],
.ghost-link:focus-visible[b-61yletnbgu] {
    transform: translateY(-2px);
}

.google-mark[b-61yletnbgu] {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 0 0 1px rgba(20, 21, 16, 0.08);
}

.google-mark svg[b-61yletnbgu] {
    width: 1.3rem;
    height: 1.3rem;
}

.button-copy[b-61yletnbgu] {
    display: grid;
    gap: 0.15rem;
}

.button-copy strong[b-61yletnbgu] {
    font-size: 1.05rem;
}

.button-copy small[b-61yletnbgu] {
    color: rgba(20, 21, 16, 0.72);
}

.primary-link[b-61yletnbgu],
.ghost-link[b-61yletnbgu] {
    min-height: 3.1rem;
    padding: 0 1.15rem;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.primary-link[b-61yletnbgu] {
    background: rgba(182, 225, 123, 0.18);
}

.ghost-link[b-61yletnbgu] {
    background: rgba(255, 255, 255, 0.04);
}

.table-stage[b-61yletnbgu] {
    grid-column: 1 / -1;
    display: grid;
    gap: 1rem;
    margin-top: 0.5rem;
}

.score-strip[b-61yletnbgu] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.score-strip div[b-61yletnbgu] {
    min-width: 8rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
}

.score-strip span[b-61yletnbgu],
.score-strip strong[b-61yletnbgu] {
    display: block;
}

.score-strip span[b-61yletnbgu] {
    font-size: 0.72rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: #afba9a;
}

.score-strip strong[b-61yletnbgu] {
    margin-top: 0.35rem;
    font-size: 1.35rem;
}

.snooker-table[b-61yletnbgu] {
    position: relative;
    min-height: 19rem;
    border-radius: 2.4rem;
    border: 0.75rem solid #442818;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 26%),
        radial-gradient(circle at 30% 35%, rgba(82, 163, 101, 0.26), transparent 35%),
        linear-gradient(180deg, #123922 0%, #0b2717 100%);
    box-shadow:
        inset 0 0 0 2px rgba(234, 214, 178, 0.14),
        inset 0 2rem 4rem rgba(0, 0, 0, 0.18),
        0 2rem 4rem rgba(0, 0, 0, 0.36);
}

.table-pocket[b-61yletnbgu],
.ball[b-61yletnbgu],
.cue-stick[b-61yletnbgu] {
    position: absolute;
}

.table-pocket[b-61yletnbgu] {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: #020202;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.06);
}

.pocket-top-left[b-61yletnbgu] {
    top: -0.45rem;
    left: -0.45rem;
}

.pocket-top-middle[b-61yletnbgu] {
    top: -0.55rem;
    left: calc(50% - 0.675rem);
}

.pocket-top-right[b-61yletnbgu] {
    top: -0.45rem;
    right: -0.45rem;
}

.pocket-bottom-left[b-61yletnbgu] {
    bottom: -0.45rem;
    left: -0.45rem;
}

.pocket-bottom-middle[b-61yletnbgu] {
    bottom: -0.55rem;
    left: calc(50% - 0.675rem);
}

.pocket-bottom-right[b-61yletnbgu] {
    bottom: -0.45rem;
    right: -0.45rem;
}

.ball[b-61yletnbgu] {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    box-shadow:
        inset -0.2rem -0.25rem 0.4rem rgba(0, 0, 0, 0.4),
        inset 0.18rem 0.18rem 0.22rem rgba(255, 255, 255, 0.45),
        0 0 1.2rem rgba(0, 0, 0, 0.24);
}

.ball-white[b-61yletnbgu] {
    top: 57%;
    left: 22%;
    background: #f6f2e8;
}

.ball-black[b-61yletnbgu] {
    top: 34%;
    right: 12%;
    background: #141414;
}

.ball-blue[b-61yletnbgu] {
    top: 48%;
    left: 51%;
    background: #2e79c8;
}

.ball-pink[b-61yletnbgu] {
    top: 42%;
    left: 64%;
    background: #dd83ad;
}

.ball-red[b-61yletnbgu] {
    background: #bb1823;
}

.ball-red-one[b-61yletnbgu] {
    top: 48%;
    left: 69%;
}

.ball-red-two[b-61yletnbgu] {
    top: 41%;
    left: 73%;
}

.ball-red-three[b-61yletnbgu] {
    top: 55%;
    left: 74%;
}

.cue-stick[b-61yletnbgu] {
    left: 10%;
    bottom: 28%;
    width: 18rem;
    height: 0.36rem;
    border-radius: 999px;
    transform: rotate(-12deg);
    transform-origin: left center;
    background: linear-gradient(90deg, #e4cc9a 0%, #b8814a 54%, #2e4258 100%);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.22);
}

@media (max-width: 960px) {
    .home-shell[b-61yletnbgu] {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 1.5rem;
    }

    .hero-copy h1[b-61yletnbgu] {
        max-width: 10ch;
    }

    .table-stage[b-61yletnbgu] {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .home-shell[b-61yletnbgu] {
        padding: 1rem 1.25rem 1.25rem;
    }

    .hero-copy h1[b-61yletnbgu] {
        font-size: clamp(2.9rem, 16vw, 4.2rem);
    }

    .hero-panel[b-61yletnbgu] {
        padding: 1.2rem;
    }

    .google-button[b-61yletnbgu] {
        align-items: flex-start;
    }

    .snooker-table[b-61yletnbgu] {
        min-height: 14rem;
        border-width: 0.55rem;
        border-radius: 1.6rem;
    }

    .cue-stick[b-61yletnbgu] {
        width: 12rem;
        left: 7%;
        bottom: 23%;
    }
}
/* /Components/Pages/HostMatch.razor.rz.scp.css */
.host-shell[b-4hsbi9hfoi] {
    display: grid;
    gap: 1.2rem;
    padding: clamp(1.25rem, 4vw, 3rem);
}

.host-header[b-4hsbi9hfoi],
.host-links[b-4hsbi9hfoi],
.host-card-head[b-4hsbi9hfoi] {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
}

.host-label[b-4hsbi9hfoi] {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: #aeb99f;
}

.host-header h1[b-4hsbi9hfoi],
.host-card-head h2[b-4hsbi9hfoi] {
    margin: 0.2rem 0 0;
}

.host-links a[b-4hsbi9hfoi] {
    min-height: 2.8rem;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
}

.host-grid[b-4hsbi9hfoi] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.host-card[b-4hsbi9hfoi],
.access-card[b-4hsbi9hfoi],
.controller-list[b-4hsbi9hfoi] {
    display: grid;
    gap: 1rem;
}

.host-card[b-4hsbi9hfoi] {
    padding: 1.25rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 14, 10, 0.8);
    align-content: start;
}

.access-card strong[b-4hsbi9hfoi] {
    display: block;
    margin-top: 0.25rem;
    overflow-wrap: anywhere;
}

.access-qr[b-4hsbi9hfoi] {
    width: min(100%, 280px);
    background: white;
    padding: 0.8rem;
    border-radius: 1rem;
}

.controller-entry[b-4hsbi9hfoi] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
    padding: 0.75rem 0.85rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
}

.controller-badge[b-4hsbi9hfoi] {
    min-width: 2rem;
    padding: 0.35rem 0.45rem;
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    color: #e7dfcb;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.controller-copy[b-4hsbi9hfoi] {
    display: grid;
    gap: 0.2rem;
}

.controller-copy strong[b-4hsbi9hfoi],
.controller-copy small[b-4hsbi9hfoi] {
    margin: 0;
}

.controller-copy small[b-4hsbi9hfoi],
.host-empty[b-4hsbi9hfoi],
.host-error[b-4hsbi9hfoi] {
    color: #aeb89f;
}

.controller-list[b-4hsbi9hfoi] {
    align-content: start;
    min-height: 0;
}

@media (max-width: 980px) {
    .host-grid[b-4hsbi9hfoi] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Join.razor.rz.scp.css */
.join-shell[b-35xcaqe5vk] {
    min-height: calc(100vh - 5rem);
    display: grid;
    gap: 1rem;
    align-content: center;
    justify-items: center;
    padding: 1.5rem;
}

.join-label[b-35xcaqe5vk] {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: #acb69e;
}

.join-shell h1[b-35xcaqe5vk] {
    margin: 0.2rem 0 0;
}

.join-card[b-35xcaqe5vk] {
    width: min(100%, 28rem);
    display: grid;
    gap: 1rem;
    padding: 1.3rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 14, 10, 0.82);
}

.join-card label[b-35xcaqe5vk] {
    display: grid;
    gap: 0.5rem;
}

.join-card input[b-35xcaqe5vk],
.join-card button[b-35xcaqe5vk] {
    min-height: 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #f2ead8;
    padding: 0 1rem;
}
/* /Components/Pages/MatchBoard.razor.rz.scp.css */
.board-shell[b-yfh3ot1h1a] {
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 2rem);
}

.board-grid[b-yfh3ot1h1a] {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: stretch;
}

.board-column[b-yfh3ot1h1a] {
    display: grid;
    gap: 0.9rem;
    min-height: 0;
}

.board-column-journal[b-yfh3ot1h1a] {
    height: 100%;
}

.board-column-journal[b-yfh3ot1h1a]  .journal-shell {
    height: 100%;
    grid-template-rows: auto minmax(0, 1fr);
}

.board-column-journal[b-yfh3ot1h1a]  .journal-list {
    min-height: 0;
    max-height: none;
}

@media (max-width: 980px) {
    .board-grid[b-yfh3ot1h1a] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/MatchControl.razor.rz.scp.css */
.control-shell[b-nbzj978ye3] {
    display: grid;
    gap: 1.2rem;
    padding: clamp(1.25rem, 4vw, 3rem);
}

.control-header[b-nbzj978ye3],
.control-grid[b-nbzj978ye3] {
    display: grid;
    gap: 1rem;
}

.control-header[b-nbzj978ye3] {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.control-label[b-nbzj978ye3] {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: #aab59c;
}

.control-header h1[b-nbzj978ye3],
.control-header small[b-nbzj978ye3] {
    margin: 0.2rem 0 0;
}

.control-header a[b-nbzj978ye3] {
    min-height: 3rem;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
}

.control-grid[b-nbzj978ye3] {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: stretch;
}

.control-column[b-nbzj978ye3] {
    display: grid;
    gap: 1rem;
    align-content: start;
    min-height: 0;
}

.control-column-journal[b-nbzj978ye3] {
    height: 100%;
}

.control-column-journal[b-nbzj978ye3]  .journal-shell {
    height: 100%;
    grid-template-rows: auto minmax(0, 1fr);
}

.control-column-journal[b-nbzj978ye3]  .journal-list {
    min-height: 0;
    max-height: none;
}

.control-error[b-nbzj978ye3] {
    margin: 0;
    color: #e0b7b0;
}

@media (max-width: 980px) {
    .control-header[b-nbzj978ye3],
    .control-grid[b-nbzj978ye3] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/MatchJoin.razor.rz.scp.css */
.match-join-shell[b-y022ktfyz8] {
    display: grid;
    gap: 1.2rem;
    padding: clamp(1.25rem, 4vw, 3rem);
}

.match-join-header[b-y022ktfyz8],
.match-join-grid[b-y022ktfyz8] {
    display: grid;
    gap: 1rem;
}

.match-join-header[b-y022ktfyz8] {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.match-join-label[b-y022ktfyz8] {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: #aab59d;
}

.match-join-header h1[b-y022ktfyz8] {
    margin: 0.2rem 0 0;
}

.match-join-header a[b-y022ktfyz8] {
    min-height: 3rem;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
}

.match-join-grid[b-y022ktfyz8] {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.join-form-card[b-y022ktfyz8] {
    display: grid;
    gap: 1rem;
    padding: 1.3rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 14, 10, 0.82);
}

.join-form-card label[b-y022ktfyz8] {
    display: grid;
    gap: 0.5rem;
}

.join-form-card input[b-y022ktfyz8],
.join-submit[b-y022ktfyz8] {
    min-height: 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #f2ead8;
    padding: 0 1rem;
}

.join-helper[b-y022ktfyz8],
.join-submit[b-y022ktfyz8] {
    margin: 0;
}

.join-submit[b-y022ktfyz8] {
    border-color: rgba(180, 222, 118, 0.4) !important;
    background: rgba(180, 222, 118, 0.16) !important;
}

.join-error[b-y022ktfyz8] {
    margin: 0;
    color: #e4bdb6;
}

@media (max-width: 980px) {
    .match-join-header[b-y022ktfyz8],
    .match-join-grid[b-y022ktfyz8] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Screens.razor.rz.scp.css */
.screens-shell[b-qxvc31z126] {
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 2rem);
}

.screen-meta[b-qxvc31z126] {
    display: flex;
    gap: 1rem;
}

.screens-empty[b-qxvc31z126],
.screen-card[b-qxvc31z126] {
    padding: 1rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-summary[b-qxvc31z126],
.screens-empty[b-qxvc31z126],
.screens-error[b-qxvc31z126] {
    color: #aab59c;
}

.screens-grid[b-qxvc31z126] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
}

.screen-card[b-qxvc31z126] {
    display: grid;
    gap: 0.8rem;
    background: rgba(8, 14, 10, 0.82);
}

.screen-meta[b-qxvc31z126] {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 0.95rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.04);
}

.screen-meta span[b-qxvc31z126] {
    display: block;
    color: #aab59c;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    font-size: 0.8rem;
}

.screen-meta strong[b-qxvc31z126] {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.35rem;
    color: #f2ead8;
}

@media (max-width: 760px) {
    .screen-meta[b-qxvc31z126] {
        display: grid;
        grid-template-columns: 1fr;
    }
}
/* /Components/Shared/MatchActionPad.razor.rz.scp.css */
.action-pad[b-mlz690wvro] {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 15, 11, 0.8);
}

.action-header[b-mlz690wvro] {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-label[b-mlz690wvro],
.action-group > span[b-mlz690wvro] {
    display: block;
    margin: 0 0 0.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: #aab69d;
}

.action-header h3[b-mlz690wvro] {
    margin: 0.15rem 0 0;
}

.action-header span:last-child[b-mlz690wvro],
.fixed-player[b-mlz690wvro] {
    color: #c0cab2;
    margin: 0;
}

.player-picker[b-mlz690wvro],
.action-grid[b-mlz690wvro],
.note-row[b-mlz690wvro] {
    display: grid;
    gap: 0.7rem;
}

.player-picker[b-mlz690wvro] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.action-grid[b-mlz690wvro] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.action-grid-pots[b-mlz690wvro] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.player-picker button[b-mlz690wvro],
.action-grid button[b-mlz690wvro],
.note-row button[b-mlz690wvro] {
    min-height: 3.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #f0e8d6;
    cursor: pointer;
}

.picker-active[b-mlz690wvro] {
    border-color: rgba(176, 224, 120, 0.5) !important;
    background: rgba(176, 224, 120, 0.14) !important;
}

.ball-red[b-mlz690wvro],
.ball-yellow[b-mlz690wvro],
.ball-green[b-mlz690wvro],
.ball-brown[b-mlz690wvro],
.ball-blue[b-mlz690wvro],
.ball-pink[b-mlz690wvro],
.ball-black[b-mlz690wvro] {
    font-weight: 700;
}

.ball-red[b-mlz690wvro] {
    background: rgba(150, 25, 25, 0.65) !important;
}

.ball-yellow[b-mlz690wvro] {
    background: rgba(196, 159, 33, 0.7) !important;
    color: #18140b !important;
}

.ball-green[b-mlz690wvro] {
    background: rgba(31, 110, 55, 0.75) !important;
}

.ball-brown[b-mlz690wvro] {
    background: rgba(105, 67, 33, 0.82) !important;
}

.ball-blue[b-mlz690wvro] {
    background: rgba(31, 79, 153, 0.78) !important;
}

.ball-pink[b-mlz690wvro] {
    background: rgba(180, 83, 129, 0.78) !important;
}

.ball-black[b-mlz690wvro] {
    background: rgba(18, 18, 18, 0.92) !important;
}

.finish-button[b-mlz690wvro] {
    border-color: rgba(224, 113, 94, 0.42) !important;
}

.note-row[b-mlz690wvro] {
    grid-template-columns: 1fr auto;
}

.note-row input[b-mlz690wvro] {
    min-height: 3.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    color: #f0e8d6;
    padding: 0 1rem;
}

@media (max-width: 640px) {
    .action-grid[b-mlz690wvro],
    .action-grid-pots[b-mlz690wvro] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .note-row[b-mlz690wvro] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Shared/MatchJournal.razor.rz.scp.css */
.journal-shell[b-imtfi7yxgd] {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 13, 9, 0.8);
}

.journal-header[b-imtfi7yxgd] {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.journal-label[b-imtfi7yxgd] {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: #a9b59b;
}

.journal-header h3[b-imtfi7yxgd] {
    margin: 0.2rem 0 0;
}

.journal-header span[b-imtfi7yxgd] {
    color: #b6c0aa;
    font-size: 0.88rem;
}

.journal-list[b-imtfi7yxgd] {
    display: grid;
    gap: 0.55rem;
    max-height: 30rem;
    overflow: auto;
}

.journal-entry[b-imtfi7yxgd] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 0.75rem 0.85rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
}

.journal-entry-undone[b-imtfi7yxgd] {
    opacity: 0.55;
}

.journal-seq[b-imtfi7yxgd] {
    padding: 0.4rem 0.55rem;
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    color: #e7dfcb;
    font-size: 0.82rem;
}

.journal-copy p[b-imtfi7yxgd],
.journal-copy small[b-imtfi7yxgd] {
    margin: 0;
}

.journal-copy small[b-imtfi7yxgd],
.journal-empty[b-imtfi7yxgd] {
    color: #aeb8a1;
}
/* /Components/Shared/MatchSummary.razor.rz.scp.css */
.match-summary[b-ftzav6oud1] {
    display: grid;
    gap: 0.55rem;
    padding: 0.9rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 17, 11, 0.8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.match-summary-heading[b-ftzav6oud1],
.match-summary-meta[b-ftzav6oud1] {
    display: flex;
    justify-content: space-between;
    gap: 0.55rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.match-summary-label[b-ftzav6oud1],
.player-slot[b-ftzav6oud1],
.match-summary-meta span[b-ftzav6oud1] {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
    color: #a8b49b;
}

.match-summary-badges[b-ftzav6oud1] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
}

.match-summary-badges span[b-ftzav6oud1] {
    padding: 0.58rem 0.86rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #f0e8d6;
    font-size: 0.86rem;
}

.match-summary-badges [data-match-duration-badge][b-ftzav6oud1] {
    padding: 0.95rem 1.2rem;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}

.match-summary-grid[b-ftzav6oud1] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.player-card[b-ftzav6oud1] {
    display: grid;
    gap: 0.55rem;
    padding: 0.9rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
}

.player-card-active[b-ftzav6oud1] {
    border-color: rgba(182, 218, 134, 0.36);
    box-shadow: 0 0 0 1px rgba(182, 218, 134, 0.12) inset;
}

.player-card-head[b-ftzav6oud1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.player-card-title[b-ftzav6oud1] {
    display: grid;
    gap: 0.18rem;
}

.player-card h3[b-ftzav6oud1] {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.05;
}

.player-indicator[b-ftzav6oud1] {
    padding: 0.32rem 0.58rem;
    border-radius: 999px;
    background: rgba(182, 218, 134, 0.14);
    color: #dce9c8;
    font-size: 0.74rem;
}

.player-card strong[b-ftzav6oud1] {
    display: block;
    font-size: clamp(2rem, 7vw, 3.4rem);
    line-height: 1;
}

.player-stats[b-ftzav6oud1] {
    display: grid;
    gap: 0.18rem;
}

.player-time[b-ftzav6oud1] {
    display: block;
    color: #b7c2ab;
    font-size: 0.9rem;
}

.player-stat[b-ftzav6oud1] {
    display: block;
    color: #9fad96;
    font-size: 0.85rem;
}

.player-trail[b-ftzav6oud1] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.8rem;
}

.trail-item[b-ftzav6oud1] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.65rem;
    height: 1.65rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff9ee;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.trail-item-red[b-ftzav6oud1] {
    background: #c23333;
}

.trail-item-yellow[b-ftzav6oud1] {
    background: #d8b52a;
    color: #201a08;
}

.trail-item-green[b-ftzav6oud1] {
    background: #388b4b;
}

.trail-item-brown[b-ftzav6oud1] {
    background: #7c5130;
}

.trail-item-blue[b-ftzav6oud1] {
    background: #2b6fc8;
}

.trail-item-pink[b-ftzav6oud1] {
    background: #d8648a;
}

.trail-item-black[b-ftzav6oud1] {
    background: #111315;
}

.trail-item-foul[b-ftzav6oud1] {
    background: #8f6b2f;
}

.trail-item-neutral[b-ftzav6oud1] {
    background: #56605a;
}

.match-summary-meta div[b-ftzav6oud1] {
    min-width: 7rem;
    padding: 0.7rem 0.85rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.035);
}

.match-summary-meta strong[b-ftzav6oud1] {
    display: block;
    margin-top: 0.18rem;
}

@media (max-width: 640px) {
    .match-summary-heading[b-ftzav6oud1] {
        display: grid;
    }

    .match-summary-badges[b-ftzav6oud1] {
        justify-content: flex-start;
    }

    .match-summary-grid[b-ftzav6oud1] {
        grid-template-columns: 1fr;
    }
}
