/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-45dg1mxdgs] {
    position: relative;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background: var(--kosmos-canvas);
}

main[b-45dg1mxdgs] {
    min-width: 0;
    flex: 1;
}

.sidebar[b-45dg1mxdgs] {
    background: var(--kosmos-sidebar);
}

.top-row[b-45dg1mxdgs] {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--kosmos-text-muted);
    background-color: color-mix(in srgb, var(--kosmos-canvas) 88%, transparent);
    border-bottom: 1px solid var(--kosmos-border);
    backdrop-filter: blur(14px);
}

.market-status[b-45dg1mxdgs] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    font-weight: 700;
}

.status-dot[b-45dg1mxdgs] {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--kosmos-brand);
    box-shadow: 0 0 0 0.3rem rgba(var(--kosmos-brand-rgb), 0.14);
}

.theme-toggle[b-45dg1mxdgs] {
    position: relative;
    width: 2.65rem;
    height: 2.65rem;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--kosmos-text);
    background: var(--kosmos-surface-muted);
    border: 1px solid var(--kosmos-border);
    border-radius: 50%;
    transition: transform 150ms ease, background-color 150ms ease;
}

.theme-toggle:hover[b-45dg1mxdgs] {
    transform: scale(1.04);
    background: var(--kosmos-surface);
}

.theme-toggle:focus-visible[b-45dg1mxdgs] {
    outline: 3px solid rgba(var(--kosmos-brand-rgb), 0.3);
    outline-offset: 2px;
}

.theme-icon[b-45dg1mxdgs] {
    position: absolute;
    width: 1rem;
    height: 1rem;
    transition: opacity 150ms ease, transform 150ms ease;
}

.theme-icon-sun[b-45dg1mxdgs] {
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow:
        0 -0.38rem 0 -0.31rem currentColor,
        0 0.38rem 0 -0.31rem currentColor,
        0.38rem 0 0 -0.31rem currentColor,
        -0.38rem 0 0 -0.31rem currentColor;
}

.theme-icon-moon[b-45dg1mxdgs] {
    border-radius: 50%;
    box-shadow: -0.3rem 0.15rem 0 0 currentColor;
    transform: translate(0.15rem, -0.05rem);
}

.theme-toggle[data-current-theme="light"] .theme-icon-sun[b-45dg1mxdgs],
.theme-toggle[data-current-theme="dark"] .theme-icon-moon[b-45dg1mxdgs] {
    opacity: 1;
}

.theme-toggle[data-current-theme="light"] .theme-icon-moon[b-45dg1mxdgs],
.theme-toggle[data-current-theme="dark"] .theme-icon-sun[b-45dg1mxdgs] {
    opacity: 0;
    transform: scale(0.65);
}

@media (max-width: 640.98px) {
    .sidebar[b-45dg1mxdgs] {
        position: sticky;
        top: 0;
        z-index: 20;
    }

    .top-row[b-45dg1mxdgs] {
        height: 3.75rem;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (min-width: 641px) {
    .page[b-45dg1mxdgs] {
        flex-direction: row;
    }

    .sidebar[b-45dg1mxdgs] {
        width: 260px;
        height: 100vh;
        position: sticky;
        top: 0;
        flex: 0 0 260px;
    }

    .top-row[b-45dg1mxdgs] {
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .top-row[b-45dg1mxdgs],
    article[b-45dg1mxdgs] {
        padding-left: clamp(1.5rem, 4vw, 3.5rem) !important;
        padding-right: clamp(1.5rem, 4vw, 3.5rem) !important;
    }
}

#blazor-error-ui[b-45dg1mxdgs] {
    color-scheme: light only;
    display: none;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1000;
    padding: 0.85rem 1rem;
    color: #211b00;
    background: #fff4c2;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#blazor-error-ui strong[b-45dg1mxdgs] {
    margin-right: 0.35rem;
}

#blazor-error-ui .reload[b-45dg1mxdgs] {
    margin-left: 0.5rem;
    font-weight: 700;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-h92m8lkv1n] {
    appearance: none;
    cursor: pointer;
    width: 2.75rem;
    height: 2.75rem;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    z-index: 2;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 9h18M6 15h18M6 21h18'/%3e%3c/svg%3e") no-repeat center/1.4rem rgba(255, 255, 255, 0.08);
}

.navbar-toggler:checked[b-h92m8lkv1n] {
    background-color: rgba(113, 183, 75, 0.2);
    border-color: rgba(113, 183, 75, 0.65);
}

.top-row[b-h92m8lkv1n] {
    min-height: 3.75rem;
    padding-right: 4.5rem;
    background: transparent;
}

.navbar-brand[b-h92m8lkv1n] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #f6f8f4;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.navbar-brand[b-h92m8lkv1n]::before {
    content: "K";
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    color: #0c1209;
    background: var(--kosmos-brand);
    border-radius: 50%;
    font-size: 0.88rem;
    font-weight: 900;
}

.bi[b-h92m8lkv1n] {
    display: inline-block;
    position: relative;
    width: 1.15rem;
    height: 1.15rem;
    margin-right: 0.8rem;
    top: -1px;
    background-size: cover;
    opacity: 0.86;
}

.bi-house-door-fill-nav-menu[b-h92m8lkv1n] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-h92m8lkv1n] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-h92m8lkv1n],
.bi-person-fill-nav-menu[b-h92m8lkv1n] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-h92m8lkv1n],
.bi-people-fill-nav-menu[b-h92m8lkv1n] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm4.5 6c0-2.5-2-4-4.5-4s-4.5 1.5-4.5 4h9Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-h92m8lkv1n] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-h92m8lkv1n] {
    padding: 0 0.75rem 0.25rem;
    font-size: 0.9rem;
}

.nav-item:first-of-type[b-h92m8lkv1n] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-h92m8lkv1n] {
    padding-bottom: 1rem;
}

.nav-item[b-h92m8lkv1n]  .nav-link {
    width: 100%;
    height: 2.85rem;
    display: flex;
    align-items: center;
    padding: 0 0.9rem;
    color: var(--kosmos-sidebar-muted);
    background: none;
    border: 0;
    border-radius: 8px;
    line-height: 1;
    font-weight: 650;
    text-decoration: none;
    transition: color 120ms ease, background-color 120ms ease;
}

.nav-item[b-h92m8lkv1n]  a.active {
    color: #fff;
    background-color: rgba(113, 183, 75, 0.18);
}

.nav-item[b-h92m8lkv1n]  a.active .bi {
    opacity: 1;
    filter: sepia(1) saturate(4) hue-rotate(50deg);
}

.nav-item[b-h92m8lkv1n]  .nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.08);
}

/* Logout sits directly under the account link, so it is separated by a rule and
   outlined in the sidebar's own idiom (the same white alpha as .navbar-toggler)
   rather than a colour this palette does not otherwise use. The warning colour
   is held back until hover or focus, which is what precedes an accidental
   click. */
.nav-item-logout[b-h92m8lkv1n] {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item-logout .nav-link-logout[b-h92m8lkv1n] {
    color: var(--kosmos-sidebar-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-item-logout .nav-link-logout:hover[b-h92m8lkv1n],
.nav-item-logout .nav-link-logout:focus-visible[b-h92m8lkv1n] {
    color: #ffb3ab;
    background: rgba(255, 122, 110, 0.16);
    border-color: rgba(255, 122, 110, 0.45);
}

.nav-item-logout .nav-link-logout:hover .bi[b-h92m8lkv1n],
.nav-item-logout .nav-link-logout:focus-visible .bi[b-h92m8lkv1n] {
    filter: sepia(1) saturate(6) hue-rotate(-40deg);
    opacity: 1;
}

.nav-scrollable[b-h92m8lkv1n] {
    display: none;
}

.nav-scrollable nav[b-h92m8lkv1n] {
    min-height: 100%;
}

.nav-section-label[b-h92m8lkv1n] {
    margin: 1rem 1.65rem 0.35rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* A group inside a section: quieter and tighter than the section label above it, so the
   hierarchy reads as two levels rather than as two lists. */
.nav-subsection-label[b-h92m8lkv1n] {
    margin: 0.65rem 1.65rem 0.2rem 2.15rem;
    /* Quieter than the section label above it, but not below the 4.5:1 this text size needs
       against the sidebar: 0.34 alpha looked right and measured 3.3:1. */
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-account[b-h92m8lkv1n] {
    margin-top: auto;
    padding-top: 0.75rem;
    background: var(--kosmos-sidebar);
}

.navbar-toggler:checked ~ .nav-scrollable[b-h92m8lkv1n] {
    display: block;
}

@media (max-width: 640.98px) {
    /* The sidebar is sticky here, so an expanded menu must scroll inside
       itself instead of growing taller than the viewport. */
    .navbar-toggler:checked ~ .nav-scrollable[b-h92m8lkv1n] {
        max-height: calc(100dvh - 3.75rem);
        overflow-y: auto;
        overscroll-behavior-y: contain;
        scrollbar-width: thin;
        scrollbar-color: #343a31 transparent;
    }
}

@media (min-width: 641px) {
    .navbar-toggler[b-h92m8lkv1n] {
        display: none;
    }

    .top-row[b-h92m8lkv1n] {
        min-height: 4.5rem;
        padding: 0.75rem 1rem;
    }

    .nav-scrollable[b-h92m8lkv1n] {
        display: block;
        height: calc(100vh - 4.5rem);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: #343a31 transparent;
    }

    .nav-account[b-h92m8lkv1n] {
        position: sticky;
        bottom: 0;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-fk2fe7ts36],
.components-reconnect-repeated-attempt-visible[b-fk2fe7ts36],
.components-reconnect-failed-visible[b-fk2fe7ts36],
.components-pause-visible[b-fk2fe7ts36],
.components-resume-failed-visible[b-fk2fe7ts36],
.components-rejoining-animation[b-fk2fe7ts36] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-fk2fe7ts36],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-fk2fe7ts36],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-fk2fe7ts36],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-fk2fe7ts36],
#components-reconnect-modal.components-reconnect-retrying[b-fk2fe7ts36],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-fk2fe7ts36],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-fk2fe7ts36],
#components-reconnect-modal.components-reconnect-failed[b-fk2fe7ts36],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-fk2fe7ts36] {
    display: block;
}


#components-reconnect-modal[b-fk2fe7ts36] {
    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-fk2fe7ts36 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-fk2fe7ts36 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-fk2fe7ts36 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-fk2fe7ts36]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-fk2fe7ts36 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-fk2fe7ts36 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-fk2fe7ts36 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-fk2fe7ts36 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-fk2fe7ts36] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-fk2fe7ts36] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-fk2fe7ts36] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-fk2fe7ts36] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-fk2fe7ts36] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-fk2fe7ts36] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-fk2fe7ts36] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-fk2fe7ts36 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-fk2fe7ts36] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-fk2fe7ts36 {
    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/Auctioneer.razor.rz.scp.css */
/* The .clock-definition-settings rules moved to wwwroot/app.css: the catalog cards
   reuse this card/settings pattern, and scoped CSS only reached this page. */
/* /Components/Pages/FairnessAudit.razor.rz.scp.css */
.fairness-layout[b-7pf1yd8wt1] {
    display: grid;
    grid-template-columns: minmax(15rem, 21rem) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.fairness-session-list[b-7pf1yd8wt1] {
    position: sticky;
    top: 5rem;
    max-height: calc(100vh - 6rem);
    overflow: auto;
}

.fairness-session-buttons[b-7pf1yd8wt1] {
    display: grid;
    gap: 0.5rem;
}

.fairness-session-button[b-7pf1yd8wt1] {
    display: grid;
    gap: 0.15rem;
    width: 100%;
    padding: 0.75rem;
    color: var(--kosmos-text);
    text-align: left;
    background: transparent;
    border: 1px solid var(--kosmos-border);
    border-radius: 6px;
}

.fairness-session-button:hover[b-7pf1yd8wt1],
.fairness-session-button.selected[b-7pf1yd8wt1] {
    background: var(--kosmos-surface-muted);
    border-color: var(--kosmos-brand);
}

.fairness-session-button span[b-7pf1yd8wt1],
.fairness-session-button small[b-7pf1yd8wt1] {
    color: var(--kosmos-text-muted);
}

.fairness-report-heading[b-7pf1yd8wt1],
.fairness-attempt > header[b-7pf1yd8wt1] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.fairness-report-shell[b-7pf1yd8wt1] {
    min-width: 0;
}

.fairness-report-heading[b-7pf1yd8wt1] {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--kosmos-border);
}

.fairness-report-heading h2[b-7pf1yd8wt1],
.fairness-attempt h4[b-7pf1yd8wt1] {
    margin-bottom: 0.25rem;
}

.fairness-summary-grid[b-7pf1yd8wt1] {
    margin-top: 1rem;
}

.fairness-explanation[b-7pf1yd8wt1],
.fairness-attempts[b-7pf1yd8wt1],
.fairness-technical[b-7pf1yd8wt1] {
    margin-top: 1.5rem;
}

.fairness-explanation[b-7pf1yd8wt1] {
    padding-left: 1rem;
    border-left: 4px solid var(--kosmos-brand);
}

.fairness-attempt[b-7pf1yd8wt1] {
    padding: 1rem 0;
    break-inside: avoid;
    border-top: 1px solid var(--kosmos-border);
}

.fairness-method[b-7pf1yd8wt1] {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    background: var(--kosmos-surface-muted);
    border-radius: 4px;
}

.fairness-attempt-result[b-7pf1yd8wt1] {
    margin: 0.75rem 0;
}

.fairness-candidates[b-7pf1yd8wt1] {
    margin-bottom: 0;
}

.fairness-technical[b-7pf1yd8wt1] {
    padding-top: 1rem;
    border-top: 1px solid var(--kosmos-border);
}

.fairness-technical summary[b-7pf1yd8wt1] {
    cursor: pointer;
    font-weight: 700;
}

.fairness-technical-round[b-7pf1yd8wt1] {
    padding: 1rem 0;
    break-inside: avoid;
    border-top: 1px solid var(--kosmos-border);
}

.fairness-technical .table-responsive[b-7pf1yd8wt1] {
    overflow-x: auto;
}

@media (max-width: 900px) {
    .fairness-layout[b-7pf1yd8wt1] {
        grid-template-columns: 1fr;
    }

    .fairness-session-list[b-7pf1yd8wt1] {
        position: static;
        max-height: none;
    }

    .fairness-layout.has-report .fairness-report-shell[b-7pf1yd8wt1] {
        order: -1;
    }
}

@media (max-width: 540px) {
    .fairness-report-heading[b-7pf1yd8wt1],
    .fairness-attempt > header[b-7pf1yd8wt1] {
        align-items: stretch;
        flex-direction: column;
    }

    .fairness-method[b-7pf1yd8wt1] {
        align-self: flex-start;
        white-space: normal;
    }

    .fairness-candidates[b-7pf1yd8wt1] {
        min-width: 0 !important;
    }

    .fairness-candidates thead[b-7pf1yd8wt1] {
        display: none;
    }

    .fairness-candidates tbody[b-7pf1yd8wt1],
    .fairness-candidates tr[b-7pf1yd8wt1],
    .fairness-candidates td[b-7pf1yd8wt1] {
        display: block;
        width: 100%;
    }

    .fairness-candidates tr[b-7pf1yd8wt1] {
        padding: 0.65rem 0;
        border-bottom: 1px solid var(--kosmos-border);
    }

    .fairness-candidates tr:last-child[b-7pf1yd8wt1] {
        border-bottom: 0;
    }

    .fairness-candidates td[b-7pf1yd8wt1] {
        display: grid;
        grid-template-columns: minmax(5.5rem, 0.45fr) minmax(0, 1fr);
        gap: 0.5rem;
        padding: 0.2rem 0.75rem;
        border: 0;
    }

    .fairness-candidates td[b-7pf1yd8wt1]::before {
        color: var(--kosmos-text-muted);
        font-size: 0.72rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .fairness-candidates td:nth-child(1)[b-7pf1yd8wt1]::before { content: "Buyer"; }
    .fairness-candidates td:nth-child(2)[b-7pf1yd8wt1]::before { content: "Quantity"; }
    .fairness-candidates td:nth-child(3)[b-7pf1yd8wt1]::before { content: "Bid method"; }
    .fairness-candidates td:nth-child(4)[b-7pf1yd8wt1]::before { content: "Outcome"; }
}

@media print {
    .fairness-screen-only[b-7pf1yd8wt1],
    .fairness-session-list[b-7pf1yd8wt1] {
        display: none !important;
    }

    .fairness-layout[b-7pf1yd8wt1],
    .fairness-report-shell[b-7pf1yd8wt1] {
        display: block;
        padding: 0;
        border: 0;
        box-shadow: none;
    }

    .fairness-report-print[b-7pf1yd8wt1] {
        color: #000;
        background: #fff;
    }

    .fairness-attempt[b-7pf1yd8wt1],
    .fairness-technical-round[b-7pf1yd8wt1],
    table[b-7pf1yd8wt1] {
        break-inside: avoid;
    }
}
/* /Components/Pages/ProductSurfaces.razor.rz.scp.css */
.surface-grid[b-4w532rzond] { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.surface-row[b-4w532rzond] { display: grid; grid-template-columns: auto 1fr 5rem; gap: .7rem; align-items: center; padding: .55rem 0; border-bottom: 1px solid #e3e7e2; }
.surface-row code[b-4w532rzond] { margin-left: .35rem; }
@media (max-width: 900px) { .surface-grid[b-4w532rzond] { grid-template-columns: 1fr; } }
/* /Components/Pages/SaleCatalog.razor.rz.scp.css */
.catalog-actions[b-vm5bzh9o2n], .catalog-toolbar[b-vm5bzh9o2n] { display: flex; gap: .6rem; align-items: center; }
.catalog-toolbar[b-vm5bzh9o2n] { margin-bottom: 1rem; }
.catalog-toolbar .form-control[b-vm5bzh9o2n], .catalog-toolbar .form-select[b-vm5bzh9o2n] { width: 12rem; }
.catalog-group[b-vm5bzh9o2n] { margin: 1.25rem 0 2rem; }
.catalog-group-heading[b-vm5bzh9o2n] { display: flex; justify-content: space-between; gap: 1rem; align-items: end; border-bottom: 2px solid var(--kosmos-border); }
.catalog-group-heading h2[b-vm5bzh9o2n], .catalog-group-heading p[b-vm5bzh9o2n] { margin: 0 0 .35rem; }
.catalog-sort-button[b-vm5bzh9o2n] { border: 0; background: transparent; padding: 0; font-weight: 700; white-space: nowrap; }
.catalog-color-swatch[b-vm5bzh9o2n] { display: inline-block; width: .8rem; height: .8rem; margin-right: .35rem; border: 1px solid currentColor; }
.catalog-test-row[b-vm5bzh9o2n] { background: var(--kosmos-test-row); }
.catalog-print-caption[b-vm5bzh9o2n] { display: none; }
@media print {
    .catalog-print-caption[b-vm5bzh9o2n] { display: block; font-weight: 700; }
    .catalog-group + .catalog-group[b-vm5bzh9o2n] { break-before: page; }
    .catalog-group-heading[b-vm5bzh9o2n] { break-after: avoid; }
    .sale-catalog .table-responsive[b-vm5bzh9o2n] {
        overflow: visible !important;
        border-radius: 0;
        box-shadow: none;
    }
    .sale-catalog .catalog-table[b-vm5bzh9o2n] {
        width: 100% !important;
        min-width: 0 !important;
        table-layout: auto;
        font-size: 8.5pt;
    }
    .catalog-table th[b-vm5bzh9o2n],
    .catalog-table td[b-vm5bzh9o2n] {
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: normal;
    }
    .catalog-table th[b-vm5bzh9o2n] { overflow-wrap: normal; }
    .catalog-table thead[b-vm5bzh9o2n] { display: table-header-group; }
    .catalog-table tfoot[b-vm5bzh9o2n] { display: table-footer-group; }
    .catalog-table tr[b-vm5bzh9o2n] { break-inside: avoid; }
    .catalog-sort-button[b-vm5bzh9o2n] { color: #000; white-space: normal; text-align: left; }
    .catalog-color-swatch[b-vm5bzh9o2n] { display: none; }
    /* Paper is white whatever the screen theme was, so the row keeps the light tint. */
    .catalog-test-row[b-vm5bzh9o2n] { background: #fff7da; }
    a[b-vm5bzh9o2n] { color: inherit; text-decoration: none; }
}
/* /Components/Pages/Transactions.razor.rz.scp.css */
.transaction-actions[b-d3nlpcx5yr], .transaction-toolbar[b-d3nlpcx5yr] { display: flex; gap: .6rem; align-items: center; }
.transaction-toolbar[b-d3nlpcx5yr] { margin-bottom: 1rem; }
.transaction-toolbar .form-control[b-d3nlpcx5yr], .transaction-toolbar .form-select[b-d3nlpcx5yr] { width: 12rem; }
.transaction-sort-button[b-d3nlpcx5yr] { border: 0; background: transparent; padding: 0; font-weight: 700; white-space: nowrap; }
.transaction-test-row[b-d3nlpcx5yr] { background: var(--kosmos-test-row); }
.transaction-print-caption[b-d3nlpcx5yr] { display: none; }
@media print {
    .transaction-print-caption[b-d3nlpcx5yr] { display: block; font-weight: 700; }
    .transaction-monitor .table-responsive[b-d3nlpcx5yr] { overflow: visible !important; box-shadow: none; }
    .transaction-table[b-d3nlpcx5yr] { width: 100% !important; min-width: 0 !important; font-size: 8pt; }
    .transaction-table th[b-d3nlpcx5yr], .transaction-table td[b-d3nlpcx5yr] { white-space: normal !important; overflow-wrap: anywhere; }
    .transaction-table thead[b-d3nlpcx5yr] { display: table-header-group; }
    .transaction-table tr[b-d3nlpcx5yr] { break-inside: avoid; }
    .transaction-sort-button[b-d3nlpcx5yr] { color: #000; white-space: normal; text-align: left; }
    /* Paper is white whatever the screen theme was. */
    .transaction-test-row[b-d3nlpcx5yr] { background: #fff7da; }
}
/* /Components/Shared/AuctionClockDial.razor.rz.scp.css */
.auction-dial[b-abz1latgs6] {
    position: relative;
    width: min(100%, 18rem);
    aspect-ratio: 1;
    margin: 0.5rem auto 1rem;
    container-type: inline-size;
}

.auction-dial-large[b-abz1latgs6] {
    width: min(100%, 27rem);
}

svg[b-abz1latgs6] {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.dial-face[b-abz1latgs6] {
    fill: var(--kosmos-surface);
    stroke: var(--kosmos-text);
    stroke-width: 7;
}

.dial-track[b-abz1latgs6],
.dial-progress[b-abz1latgs6] {
    fill: none;
    stroke-width: 7;
    transform: rotate(-90deg);
    transform-origin: 160px 160px;
}

.dial-track[b-abz1latgs6] {
    stroke: var(--kosmos-border);
}

.dial-progress[b-abz1latgs6] {
    stroke: var(--kosmos-brand);
    stroke-linecap: round;
    stroke-dasharray: 0 100;
}

.dial-tick[b-abz1latgs6] {
    stroke: var(--kosmos-text-muted);
    stroke-width: 2;
}

.dial-tick-major[b-abz1latgs6] {
    stroke: var(--kosmos-text);
    stroke-width: 4;
}

.dial-scale-label[b-abz1latgs6] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    /* Full-contrast text: these are the prices the hand is read against. */
    color: var(--kosmos-text);
    background: var(--kosmos-surface);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.dial-cent-label[b-abz1latgs6] {
    fill: var(--kosmos-text-muted);
    font-size: 13px;
    font-weight: 700;
}

.dial-revolution-price[b-abz1latgs6] {
    fill: var(--kosmos-text);
    font-size: 12px;
}

.dial-scale-range[b-abz1latgs6] {
    gap: 0.35rem;
    border: 1px solid #d9ded6;
    border-radius: 4px;
}

.dial-scale-range small[b-abz1latgs6] {
    color: #7a857f;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.dial-scale-start[b-abz1latgs6] {
    color: var(--kosmos-brand-strong);
}

.dial-scale-minimum[b-abz1latgs6] {
    color: #9b3b35;
}

.dial-hand[b-abz1latgs6] {
    transform: rotate(0deg);
    transform-origin: 160px 160px;
}

/* The hand is read against the rim scale, so it carries a light outline to stay
   legible over the ticks and labels it crosses. */
.dial-hand line[b-abz1latgs6] {
    stroke: #b33c35;
    stroke-width: 6;
    stroke-linecap: round;
    paint-order: stroke;
}

.dial-hand path[b-abz1latgs6] {
    fill: #b33c35;
    stroke: var(--kosmos-surface);
    stroke-width: 1.5;
    paint-order: stroke fill;
}

.dial-hub[b-abz1latgs6] {
    fill: var(--kosmos-brand);
    stroke: var(--kosmos-text);
    stroke-width: 4;
}

.dial-hub-center[b-abz1latgs6] {
    fill: var(--kosmos-text);
}

.dial-readout[b-abz1latgs6] {
    position: absolute;
    inset: 36% 24%;
    display: grid;
    align-content: center;
    justify-items: center;
    min-width: 0;
    text-align: center;
    pointer-events: none;
}

.dial-readout strong[b-abz1latgs6] {
    max-width: 100%;
    color: var(--kosmos-text);
    font-size: clamp(1.1rem, 13cqi, 2.9rem);
    line-height: 1;
    overflow-wrap: anywhere;
    /* Fixed-width digits so a ticking price does not jitter as it changes. */
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.dial-price-caption[b-abz1latgs6] {
    color: var(--kosmos-text-muted);
    font-size: clamp(0.55rem, 3.4cqi, 0.7rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dial-readout strong[data-price-changing="true"][b-abz1latgs6] {
    animation: dial-price-tick-b-abz1latgs6 120ms ease-out;
}

@keyframes dial-price-tick-b-abz1latgs6 {
    from {
        opacity: 0.72;
        transform: translateY(-1px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scoped to the state chip so it does not also push the price caption down. */
.dial-readout .dial-state[b-abz1latgs6] {
    margin-top: clamp(1.85rem, 8cqi, 2rem);
    color: var(--kosmos-brand-strong);
    font-size: clamp(0.68rem, 4.5cqi, 0.95rem);
    font-weight: 800;
    text-transform: uppercase;
}

.dial-readout small[b-abz1latgs6] {
    margin-top: 0.2rem;
    color: var(--kosmos-text-muted);
    font-size: clamp(0.62rem, 4cqi, 0.82rem);
}

.dial-network-status[b-abz1latgs6] {
    position: absolute;
    left: 50%;
    bottom: -0.35rem;
    z-index: 1;
    padding: 0.2rem 0.45rem;
    transform: translateX(-50%);
    border: 1px solid #a56b24;
    border-radius: 999px;
    background: var(--kosmos-surface);
    color: #714713;
    font-size: clamp(0.62rem, 4cqi, 0.78rem);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    .dial-readout strong[data-price-changing="true"][b-abz1latgs6] {
        animation: none;
    }
}
/* /Components/Shared/ConfirmDialog.razor.rz.scp.css */
.confirm-dialog[b-hhne1q5ta2] {
    width: min(32rem, calc(100vw - 2rem));
    max-width: none;
    margin: auto;
    padding: 0;
    color: var(--kosmos-text);
    background: var(--kosmos-surface);
    border: 1px solid var(--kosmos-border);
    border-radius: 8px;
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.24);
}

.confirm-dialog[b-hhne1q5ta2]::backdrop {
    background: rgba(16, 24, 21, 0.58);
}

.confirm-dialog__content[b-hhne1q5ta2] {
    display: grid;
    gap: 1.25rem;
    padding: 1.5rem;
}

.confirm-dialog h2[b-hhne1q5ta2] {
    margin: 0;
    font-size: 1.35rem;
}

.confirm-dialog__message[b-hhne1q5ta2] {
    margin: 0;
    color: var(--kosmos-text-muted);
    line-height: 1.55;
}

.confirm-dialog__actions[b-hhne1q5ta2] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

@media (max-width: 480px) {
    .confirm-dialog__actions[b-hhne1q5ta2] {
        flex-direction: column-reverse;
    }

    .confirm-dialog__actions .btn[b-hhne1q5ta2] {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .confirm-dialog[b-hhne1q5ta2] {
        animation: none;
    }
}
