/* /Components/Dialogs/Teams/PlayerCardDialog.razor.rz.scp.css */
.player-card-zoom[b-budmod3q7a] {
    display: flex;
    justify-content: center;
    padding: 12px;
    animation: player-card-zoom-in-b-budmod3q7a 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes player-card-zoom-in-b-budmod3q7a {
    from {
        transform: scale(0.82);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .player-card-zoom[b-budmod3q7a] {
        animation: none;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-brand-link[b-r3ae3392xd] {
    display: inline-flex;
    align-items: center;
    color: inherit;
}

.app-brand-stack[b-r3ae3392xd] {
    min-width: 0;
}

.app-brand-text[b-r3ae3392xd] {
    color: inherit;
    letter-spacing: -0.5px;
}

@media (max-width: 599.98px) {
    .app-brand-text[b-r3ae3392xd] {
        font-size: 1rem;
    }
}

.app-footer[b-r3ae3392xd] {
    margin-top: 2rem;
    padding: 1.25rem 0 1.75rem;
    border-top: 1px solid var(--mud-palette-lines-default);
    background: transparent;
}

.app-footer-container[b-r3ae3392xd] {
    margin-left: auto;
    margin-right: auto;
}

.app-footer-content[b-r3ae3392xd] {
    align-items: center;
    text-align: center;
}

.app-footer-title[b-r3ae3392xd] {
    color: var(--mud-palette-text-primary);
    font-weight: 600;
}

.app-footer-text[b-r3ae3392xd] {
    color: var(--mud-palette-text-secondary);
}

.app-footer-separator[b-r3ae3392xd] {
    opacity: 0.65;
}

.app-footer-branding[b-r3ae3392xd] {
    align-items: center;
}

.app-footer-brand-link[b-r3ae3392xd] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--mud-palette-text-secondary);
}

.app-footer-brand-logo[b-r3ae3392xd] {
    height: 26px;
    width: auto;
    display: block;
}

.app-footer-brand-icon[b-r3ae3392xd] {
    color: var(--mud-palette-primary);
}

.app-footer-brand-text[b-r3ae3392xd] {
    color: var(--mud-palette-text-secondary);
    font-weight: 600;
}

[b-r3ae3392xd] a,
[b-r3ae3392xd] .mud-link {
    color: var(--mud-palette-primary);
}

[b-r3ae3392xd] a:hover,
[b-r3ae3392xd] .mud-link:hover,
[b-r3ae3392xd] a:focus-visible,
[b-r3ae3392xd] .mud-link:focus-visible {
    color: var(--mud-palette-info);
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-brand[b-v4nnk91gaq] {
    border-color: var(--mud-palette-lines-default);
    background: color-mix(in srgb, var(--mud-palette-surface) 94%, var(--mud-palette-primary) 6%);
}

/* /Components/Pages/Fantasy/DraftBoard.razor.rz.scp.css */
/* Draft board grid.
   Teams are rows, rounds are columns. Sized in rem so the whole board scales with one
   variable when entering fullscreen, rather than needing a second set of rules. */

.board-wrap[b-jpe5aa0xea] {
    --cell-w: 8.5rem;
    --cell-h: 3.4rem;
    --team-col-w: 10rem;
    overflow: auto;
    border-radius: 8px;
    position: relative;
}

/* Fullscreen gets bigger cells: the constraint stops being screen width and starts
   being legibility from across a room. */
.board-wrap.fullscreen[b-jpe5aa0xea] {
    --cell-w: 10rem;
    --cell-h: 4rem;
    position: fixed;
    inset: 0;
    z-index: 2000;
    padding: 0.75rem;
    background: var(--mud-palette-surface);
    border-radius: 0;
}

.board-grid[b-jpe5aa0xea] {
    display: grid;
    gap: 3px;
    /* Grid columns are set inline from the round count — it varies per draft. */
}

.board-cell[b-jpe5aa0xea] {
    height: var(--cell-h);
    border-radius: 5px;
    padding: 0.3rem 0.45rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.15;
}

/* Sticky headers so team names and round numbers stay visible while scrolling a
   16-round board in either direction. */
.board-head[b-jpe5aa0xea] {
    position: sticky;
    top: 0;
    z-index: 3;
    background: var(--mud-palette-background-gray);
    font-weight: 600;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 2.2rem;
}

.board-team[b-jpe5aa0xea] {
    position: sticky;
    left: 0;
    z-index: 2;
    width: var(--team-col-w);
    background: var(--mud-palette-background-gray);
    font-weight: 600;
    justify-content: center;
}

/* The corner sits above both sticky axes. */
.board-corner[b-jpe5aa0xea] {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 4;
    background: var(--mud-palette-background-gray);
}

.board-team-name[b-jpe5aa0xea] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.8rem;
}

.board-team-owner[b-jpe5aa0xea] {
    font-size: 0.65rem;
    opacity: 0.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pick-player[b-jpe5aa0xea] {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pick-meta[b-jpe5aa0xea] {
    display: flex;
    justify-content: space-between;
    gap: 0.3rem;
    font-size: 0.65rem;
    opacity: 0.85;
}

.pick-empty[b-jpe5aa0xea] {
    background: var(--mud-palette-action-disabled-background);
    opacity: 0.35;
}

/* On the clock: a pulsing outline is readable at a glance from across a draft room,
   which a colour change alone is not. */
.pick-onclock[b-jpe5aa0xea] {
    background: var(--mud-palette-action-disabled-background);
    outline: 2px solid var(--mud-palette-primary);
    outline-offset: -2px;
    animation: onclock-pulse-b-jpe5aa0xea 1.6s ease-in-out infinite;
}

@keyframes onclock-pulse-b-jpe5aa0xea {
    0%, 100% { opacity: 0.45; }
    50%      { opacity: 1; }
}

/* Position colours follow the palette fantasy players already know from Sleeper,
   so the board reads correctly without a legend. Text is near-black on every one
   because these are all light-to-mid tones. */
.pos-qb[b-jpe5aa0xea]  { background: #f8296d; color: #fff; }
.pos-rb[b-jpe5aa0xea]  { background: #36ceb8; color: #05201c; }
.pos-wr[b-jpe5aa0xea]  { background: #58a7ff; color: #041c33; }
.pos-te[b-jpe5aa0xea]  { background: #faae58; color: #33220a; }
.pos-k[b-jpe5aa0xea]   { background: #bd66ff; color: #1e0733; }
.pos-def[b-jpe5aa0xea] { background: #7988a1; color: #fff; }
.pos-dl[b-jpe5aa0xea]  { background: #ff793f; color: #331408; }
.pos-lb[b-jpe5aa0xea]  { background: #4dd4ac; color: #05231b; }
.pos-db[b-jpe5aa0xea]  { background: #d16ba5; color: #33112a; }
.pos-unknown[b-jpe5aa0xea] { background: var(--mud-palette-action-disabled-background); }

.keeper-dot[b-jpe5aa0xea] {
    font-size: 0.6rem;
    opacity: 0.9;
}

.rank-badge[b-jpe5aa0xea] {
    font-variant-numeric: tabular-nums;
    opacity: 0.8;
}

/* Below the small breakpoint the grid stays scrollable rather than reflowing —
   a draft board that wraps is unreadable. */
@media (max-width: 600px) {
    .board-wrap[b-jpe5aa0xea] {
        --cell-w: 7rem;
        --cell-h: 3.1rem;
        --team-col-w: 7.5rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.search-hero-container[b-7y6rm2mk0o] {
    padding-inline: clamp(1rem, 4vw, 3rem);
}

.search-hero-logo-shell[b-7y6rm2mk0o] {
    display: inline-flex;
}

.search-hero-logo[b-7y6rm2mk0o] {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.search-hero-field[b-7y6rm2mk0o] {
    max-width: 640px;
    margin-inline: auto;
    display: block;
}

.search-hero-actions[b-7y6rm2mk0o] {
    max-width: 720px;
    margin-inline: auto;
}

@media (max-width: 600px) {
    .search-hero-container[b-7y6rm2mk0o] {
        padding: 1.25rem 1rem 1.5rem;
    }

    .search-hero-logo[b-7y6rm2mk0o] {
        width: 56px;
        height: 56px;
    }
}
/* /Components/Pages/Matrix/LineupBuilder.razor.rz.scp.css */
.lineup-builder[b-42qtxtg90y],
.lineup-editor[b-42qtxtg90y],
.lineup-sidebar-stack[b-42qtxtg90y],
.lineup-top-panel[b-42qtxtg90y] {
    min-width: 0;
}

.lineup-toolbar[b-42qtxtg90y],
.lineup-assignment-toolbar[b-42qtxtg90y] {
    width: 100%;
}

.lineup-top-panel[b-42qtxtg90y] {
    width: 100%;
}

.lineup-org-select[b-42qtxtg90y] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.lineup-saved-lineups[b-42qtxtg90y] {
    max-height: 320px;
    overflow: auto;
}

.lineup-editor-placeholder[b-42qtxtg90y] {
    min-height: 200px;
}

.lineup-grid-scroll[b-42qtxtg90y] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.lineup-grid[b-42qtxtg90y] {
    border-collapse: collapse;
    width: 100%;
}

.lineup-grid th[b-42qtxtg90y],
.lineup-grid td[b-42qtxtg90y] {
    border: 1px solid var(--mud-palette-lines-default);
    padding: 4px 6px;
    vertical-align: middle;
}

.lineup-grid th[b-42qtxtg90y] {
    background: var(--mud-palette-background-grey);
    font-size: 0.75rem;
}

.lineup-grid th:first-child[b-42qtxtg90y],
.lineup-grid td:first-child[b-42qtxtg90y] {
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--mud-palette-surface);
}

.lineup-grid th:first-child[b-42qtxtg90y] {
    z-index: 2;
    background: var(--mud-palette-background-grey);
}

.lineup-field-select[b-42qtxtg90y] {
    min-width: 120px;
}

.cell-error[b-42qtxtg90y] {
    background: rgba(244,67,54,0.12);
}

.count-ok[b-42qtxtg90y] {
    background: rgba(76,175,80,0.12);
    text-align: center;
    font-weight: 600;
}

.count-warn[b-42qtxtg90y] {
    background: rgba(255,152,0,0.15);
    text-align: center;
    font-weight: 600;
}

@media (max-width: 960px) {
    .lineup-toolbar[b-42qtxtg90y],
    .lineup-assignment-toolbar[b-42qtxtg90y],
    .lineup-view-toggle[b-42qtxtg90y] {
        align-items: stretch;
    }

    .lineup-grid th[b-42qtxtg90y],
    .lineup-grid td[b-42qtxtg90y] {
        padding: 4px;
    }

    .lineup-grid th[b-42qtxtg90y] {
        white-space: nowrap;
        font-size: 0.7rem;
    }

    .lineup-field-select[b-42qtxtg90y] {
        min-width: 100px;
    }
}
/* /Components/Pages/Teams/PlayerToppsCard.razor.rz.scp.css */
.topps-card[b-eh2ykcuz4n] {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: #f5efe0;
    border: 7px solid #f5efe0;
    outline: 2px solid var(--mud-palette-primary-darken);
    outline-offset: -1px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.32), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.topps-card:hover[b-eh2ykcuz4n] {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.36), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.topps-card-edit[b-eh2ykcuz4n] {
    position: absolute !important;
    top: 4px;
    right: 4px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85) !important;
    color: var(--mud-palette-primary) !important;
}

.topps-card-body[b-eh2ykcuz4n] {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    padding: 10px;
    background: linear-gradient(160deg, var(--mud-palette-primary) 0%, var(--mud-palette-primary-darken) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.topps-card-logo-bg[b-eh2ykcuz4n] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.25;
    filter: brightness(1.6);
    transform: scale(1.6);
    pointer-events: none;
}

.topps-card-photo-frame[b-eh2ykcuz4n] {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: var(--mud-palette-surface);
    border: 5px solid #f5efe0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.topps-card-photo-frame img[b-eh2ykcuz4n] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1px;
}

.topps-card-initials[b-eh2ykcuz4n] {
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--mud-palette-primary);
}

.topps-card-badges[b-eh2ykcuz4n] {
    position: absolute;
    bottom: -8px;
    right: -8px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.topps-card-logo-badge[b-eh2ykcuz4n] {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fdfaf0;
    border: 2px solid #f5efe0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

.topps-card-logo-badge img[b-eh2ykcuz4n] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.topps-card-baseball[b-eh2ykcuz4n] {
    position: relative;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}

.topps-card-baseball svg[b-eh2ykcuz4n] {
    width: 100%;
    height: 100%;
    display: block;
}

.topps-card-baseball-number[b-eh2ykcuz4n] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #7a1010;
}

.topps-card-nameplate[b-eh2ykcuz4n] {
    padding: 7px 10px;
    text-align: center;
    background: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
}

.topps-card-name[b-eh2ykcuz4n] {
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topps-card-stats[b-eh2ykcuz4n] {
    padding: 8px 10px 10px;
    background: #f5efe0;
    border-top: 1px dashed var(--mud-palette-primary-darken);
}

.topps-card-stat-line[b-eh2ykcuz4n] {
    font-size: 0.72rem;
    line-height: 1.35;
    color: #3a2f1e;
}

.topps-card-stat-label[b-eh2ykcuz4n] {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    color: var(--mud-palette-primary-darken);
    margin-right: 4px;
}

/* ---- large variant, used inside the zoomed-in modal ---- */

.topps-card-large[b-eh2ykcuz4n] {
    max-width: 420px;
    border-width: 11px;
    border-radius: 16px;
}

.topps-card-large .topps-card-edit[b-eh2ykcuz4n] {
    top: 8px;
    right: 8px;
    transform: scale(1.3);
}

.topps-card-large .topps-card-photo-frame[b-eh2ykcuz4n] {
    border-width: 8px;
}

.topps-card-large .topps-card-initials[b-eh2ykcuz4n] {
    font-size: 4.2rem;
}

.topps-card-large .topps-card-badges[b-eh2ykcuz4n] {
    bottom: -14px;
    right: -14px;
    gap: 10px;
}

.topps-card-large .topps-card-logo-badge[b-eh2ykcuz4n] {
    width: 68px;
    height: 68px;
    border-width: 3px;
}

.topps-card-large .topps-card-baseball[b-eh2ykcuz4n] {
    width: 62px;
    height: 62px;
}

.topps-card-large .topps-card-baseball-number[b-eh2ykcuz4n] {
    font-size: 1.4rem;
}

.topps-card-large .topps-card-nameplate[b-eh2ykcuz4n] {
    padding: 14px 18px;
}

.topps-card-large .topps-card-name[b-eh2ykcuz4n] {
    font-size: 1.5rem;
}

.topps-card-large .topps-card-stats[b-eh2ykcuz4n] {
    padding: 14px 18px 16px;
}

.topps-card-large .topps-card-stat-line[b-eh2ykcuz4n] {
    font-size: 1.05rem;
    line-height: 1.6;
}

.topps-card-large .topps-card-stat-label[b-eh2ykcuz4n] {
    font-size: 0.85rem;
}

/* ---- stack navigation slide transition ---- */

@keyframes topps-card-slide-next-b-eh2ykcuz4n {
    from {
        transform: translateX(36px) rotate(3deg);
        opacity: 0;
    }
    to {
        transform: translateX(0) rotate(0);
        opacity: 1;
    }
}

@keyframes topps-card-slide-prev-b-eh2ykcuz4n {
    from {
        transform: translateX(-36px) rotate(-3deg);
        opacity: 0;
    }
    to {
        transform: translateX(0) rotate(0);
        opacity: 1;
    }
}

.topps-card.slide-next[b-eh2ykcuz4n] {
    animation: topps-card-slide-next-b-eh2ykcuz4n 0.32s ease;
}

.topps-card.slide-prev[b-eh2ykcuz4n] {
    animation: topps-card-slide-prev-b-eh2ykcuz4n 0.32s ease;
}

@media (prefers-reduced-motion: reduce) {
    .topps-card.slide-next[b-eh2ykcuz4n],
    .topps-card.slide-prev[b-eh2ykcuz4n] {
        animation: none;
    }
}
/* /Components/Pages/Teams/TeamDetails.razor.rz.scp.css */
.team-page-columns[b-matk8rvxfe] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-tabs-column[b-matk8rvxfe] {
    min-width: 0;
    flex: 1 1 auto;
}

@media (min-width: 960px) {
    .team-page-columns[b-matk8rvxfe] {
        flex-direction: row;
        align-items: flex-start;
    }

    .team-roster-column[b-matk8rvxfe] {
        flex: 0 0 280px;
    }
}

.card-stack[b-matk8rvxfe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 210px;
    margin: 0;
}

.card-stack-deck[b-matk8rvxfe] {
    position: relative;
    width: 100%;
}

.card-stack-ghost[b-matk8rvxfe] {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: var(--mud-palette-surface);
    outline: 2px solid var(--mud-palette-primary-darken);
    pointer-events: none;
}

.card-stack-ghost-1[b-matk8rvxfe] {
    z-index: 0;
    opacity: 0.55;
    transform: translate(6px, 8px) rotate(2deg);
}

.card-stack-ghost-2[b-matk8rvxfe] {
    z-index: -1;
    opacity: 0.3;
    transform: translate(12px, 16px) rotate(4deg);
}

.card-stack-nav[b-matk8rvxfe] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-stack-counter[b-matk8rvxfe] {
    min-width: 46px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}
/* /Components/Pages/Workouts/WorkoutTimer.razor.rz.scp.css */
.timer-face[b-p4nm1rxzzz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    background: #1e1e1e;
    color: #fff;
    text-align: center;
}

.timer-face.expanded[b-p4nm1rxzzz] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    border-radius: 0;
    justify-content: center;
}

.timer-phase[b-p4nm1rxzzz] {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    transition: background 0.15s ease;
}

.timer-phase.phase-work[b-p4nm1rxzzz] { background: #2e7d32; }
.timer-phase.phase-rest[b-p4nm1rxzzz] { background: #c62828; }
.timer-phase.phase-go[b-p4nm1rxzzz] { background: #1565c0; }
.timer-phase.phase-done[b-p4nm1rxzzz] { background: #6a1b9a; }

.timer-round[b-p4nm1rxzzz] {
    font-size: 1rem;
    opacity: 0.8;
    min-height: 1.2rem;
}

.timer-display[b-p4nm1rxzzz] {
    font-family: 'Roboto Mono', 'Courier New', monospace;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.timer-face.expanded .timer-display[b-p4nm1rxzzz] {
    font-size: min(28vw, 14rem);
}

.timer-controls[b-p4nm1rxzzz] {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    max-width: 420px;
}

.timer-btn[b-p4nm1rxzzz] {
    flex: 1;
    min-height: 56px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 10px;
    color: #fff;
    background: #424242;
    cursor: pointer;
}

.timer-btn:active[b-p4nm1rxzzz] {
    filter: brightness(1.25);
}

.timer-btn.timer-btn-start[b-p4nm1rxzzz] { background: #2e7d32; }
.timer-btn.timer-btn-pause[b-p4nm1rxzzz] { background: #ef6c00; }
.timer-btn.timer-btn-reset[b-p4nm1rxzzz] { background: #616161; }
.timer-btn.timer-btn-expand[b-p4nm1rxzzz] { flex: 0 0 56px; background: #37474f; }

.timer-btn:disabled[b-p4nm1rxzzz] {
    opacity: 0.4;
    cursor: not-allowed;
}
/* /Components/Shared/Workouts/RestTimer.razor.rz.scp.css */
.rest-timer[b-oy4l6bp6fc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    border-radius: 12px;
    background: #1e1e1e;
    color: #fff;
    text-align: center;
}

.rest-timer-phase[b-oy4l6bp6fc] {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.2rem 0.9rem;
    border-radius: 999px;
    background: #c62828;
}

.rest-timer-display[b-oy4l6bp6fc] {
    font-family: 'Roboto Mono', 'Courier New', monospace;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.rest-timer-skip[b-oy4l6bp6fc] {
    min-height: 44px;
    padding: 0 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 10px;
    color: #fff;
    background: #616161;
    cursor: pointer;
}

.rest-timer-skip:active[b-oy4l6bp6fc] {
    filter: brightness(1.25);
}
/* /Components/Shared/Workouts/SetLogWizard.razor.rz.scp.css */
.wizard-complete-btn[b-mj4cpm1dq2] {
    flex: 1;
    min-height: 42px;
    padding: 0 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
}

.wizard-complete-btn:active[b-mj4cpm1dq2] {
    filter: brightness(1.1);
}

.wizard-complete-btn:disabled[b-mj4cpm1dq2] {
    opacity: 0.5;
    cursor: not-allowed;
}
