/* /Components/Pages/Home.razor.rz.scp.css */
/* ── Shell ─────────────────────────────────────────────── */
.no-team-message[b-6f1iwx7es3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
}

.calendar-shell[b-6f1iwx7es3] {
    padding: 8px 12px 16px;
}

/* ── Month navigation ──────────────────────────────────── */
.cal-nav[b-6f1iwx7es3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0 10px;
}

.cal-nav-title[b-6f1iwx7es3] {
    display: flex;
    align-items: center;
}

/* ── Grid ──────────────────────────────────────────────── */
.cal-grid[b-6f1iwx7es3] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
}

/* Day-of-week header row */
.cal-dow-header[b-6f1iwx7es3] {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 0;
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

/* ── Calendar cell ─────────────────────────────────────── */
.cal-cell[b-6f1iwx7es3] {
    position: relative;
    min-height: 110px;
    padding: 4px 5px 6px;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}

.cal-cell--other[b-6f1iwx7es3] {
    background: #f9fafb;
}

.cal-cell--today[b-6f1iwx7es3] {
    background: #eff6ff;
}

/* Day number — top right, Outlook style */
.cal-day-num[b-6f1iwx7es3] {
    position: absolute;
    top: 5px;
    right: 7px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1;
}

.cal-cell--other .cal-day-num[b-6f1iwx7es3] {
    color: #c9cdd4;
}

/* Today's day number gets a blue circle */
.cal-day-num--today[b-6f1iwx7es3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #1976d2;
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    top: 4px;
    right: 5px;
}

/* ── Home game card ────────────────────────────────────── */
.game-card[b-6f1iwx7es3] {
    margin-top: 22px;
    border-radius: 6px;
    padding: 6px 7px 5px;
    cursor: pointer;
}

.game-card--home[b-6f1iwx7es3] {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(21,101,192,.35);
}

/* ── Card top row (logos + ticket action) ──────────────── */
.game-card__top-row[b-6f1iwx7es3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3px;
}

.game-card__top-row--away[b-6f1iwx7es3] {
    margin-bottom: 2px;
}

.game-card__logos[b-6f1iwx7es3] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.game-card__logos--sm[b-6f1iwx7es3] {
    gap: 3px;
}

.team-logo[b-6f1iwx7es3] {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.team-logo--sm[b-6f1iwx7es3] {
    width: 20px;
    height: 20px;
}

.game-card__vs[b-6f1iwx7es3] {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
}

.game-card__at[b-6f1iwx7es3] {
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
}

.game-card__teams[b-6f1iwx7es3] {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ffffff;
}

.game-card__time[b-6f1iwx7es3] {
    font-size: 10px;
    color: rgba(255,255,255,.7);
    margin-top: 1px;
}

.game-card__seats-btn[b-6f1iwx7es3] {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 4px;
    font-size: 10px;
    font-weight: 600;
    background: rgba(255,255,255,.18);
    border-radius: 10px;
    padding: 2px 6px;
    width: fit-content;
    color: rgba(255,255,255,.75);
    border: none;
    cursor: default;
    font-family: inherit;
    line-height: inherit;
}

.game-card__seats-btn--has-seats[b-6f1iwx7es3] {
    color: #ffffff;
    cursor: pointer;
}

.game-card__seats-btn--has-seats:hover[b-6f1iwx7es3] {
    background: rgba(255,255,255,.30);
}

/* ── Ticket action icon ────────────────────────────────── */
.ticket-action[b-6f1iwx7es3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.1s;
}

/* On home (dark blue) card */
.ticket-action--new[b-6f1iwx7es3] {
    color: #fbbf24;
    background: rgba(255, 255, 255, 0.15);
}

.ticket-action--listed[b-6f1iwx7es3] {
    color: #86efac;
    background: rgba(255, 255, 255, 0.15);
}

.ticket-action--new:hover[b-6f1iwx7es3],
.ticket-action--listed:hover[b-6f1iwx7es3] {
    background: rgba(255, 255, 255, 0.28);
}

/* On away (light gray) card — override colors */
.ticket-action--away.ticket-action--new[b-6f1iwx7es3] {
    color: #d97706;
    background: rgba(0, 0, 0, 0.06);
}

.ticket-action--away.ticket-action--listed[b-6f1iwx7es3] {
    color: #16a34a;
    background: rgba(0, 0, 0, 0.06);
}

.ticket-action--away:hover[b-6f1iwx7es3] {
    background: rgba(0, 0, 0, 0.12);
}

/* ── Away game card ────────────────────────────────────── */
.game-card--away[b-6f1iwx7es3] {
    background: #f3f4f6;
    border-left: 3px solid #9ca3af;
    padding-left: 5px;
}

.game-card__teams--away[b-6f1iwx7es3] {
    color: #374151;
    font-size: 10px;
}

.game-card__time--away[b-6f1iwx7es3] {
    color: #9ca3af;
    font-size: 10px;
    margin-top: 1px;
}

/* ── Responsive: shrink logos on narrow cols ───────────── */
@media (max-width: 768px) {
    .cal-cell[b-6f1iwx7es3] {
        min-height: 80px;
    }

    .team-logo[b-6f1iwx7es3] {
        width: 20px;
        height: 20px;
    }

    .team-logo--sm[b-6f1iwx7es3] {
        width: 14px;
        height: 14px;
    }

    .game-card__teams[b-6f1iwx7es3],
    .game-card__teams--away[b-6f1iwx7es3] {
        display: none;
    }
}
/* /Features/Invoices/Components/InvoiceEditor.razor.rz.scp.css */
/* ── Layout helpers ──────────────────────────────────────── */
.two-col[b-hbmfml3760] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.section-header[b-hbmfml3760] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.field-group[b-hbmfml3760] {
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #90caf9;
}

/* ── Selected seat chips ─────────────────────────────────── */
.selected-chips[b-hbmfml3760] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

/* ── Seat section grid ───────────────────────────────────── */
.seat-section-grid[b-hbmfml3760] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.seat-row-group[b-hbmfml3760] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.seat-row-label[b-hbmfml3760] {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    min-width: 28px;
    text-align: right;
    flex-shrink: 0;
}

.seat-row-seats[b-hbmfml3760] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

/* ── Seat button ─────────────────────────────────────────── */
.seat-btn[b-hbmfml3760] {
    min-width: 32px;
    height: 28px;
    padding: 0 6px;
    border-radius: 4px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    font-size: 11px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: border-color 0.1s, background 0.1s;
}

.seat-btn:hover:not(:disabled)[b-hbmfml3760] {
    border-color: #90caf9;
    background: #eff6ff;
}

.seat-btn--selected[b-hbmfml3760] {
    border-color: #1976d2;
    background: #dbeafe;
    color: #1e40af;
}

.seat-btn--primary[b-hbmfml3760] {
    border-color: #1976d2;
    background: #1976d2;
    color: #fff;
    font-weight: 700;
}

.seat-btn--disabled[b-hbmfml3760] {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ── User list ───────────────────────────────────────────── */
.user-list[b-hbmfml3760] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.user-row[b-hbmfml3760] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.user-row__info[b-hbmfml3760] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.user-row__name[b-hbmfml3760] {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

.user-row__email[b-hbmfml3760] {
    font-size: 11px;
    color: #6b7280;
}

/* ── User search ─────────────────────────────────────────── */
.user-search[b-hbmfml3760] {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.user-search__input[b-hbmfml3760] {
    flex: 1;
}

/* ── Search results ──────────────────────────────────────── */
.search-results[b-hbmfml3760] {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.search-result[b-hbmfml3760] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-bottom: 1px solid #f3f4f6;
    background: #fff;
}

.search-result:last-child[b-hbmfml3760] {
    border-bottom: none;
}

.search-result--added[b-hbmfml3760] {
    background: #f0fdf4;
}

.search-result__info[b-hbmfml3760] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-result__name[b-hbmfml3760] {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

.search-result__email[b-hbmfml3760] {
    font-size: 11px;
    color: #6b7280;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
    .two-col[b-hbmfml3760] {
        grid-template-columns: 1fr;
    }
}
/* /Features/Listings/Components/ListingEditor.razor.rz.scp.css */
/* ── Game label ──────────────────────────────────────────── */
.game-label[b-xymydw2885] {
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #90caf9;
}

/* ── Seat grid ───────────────────────────────────────────── */
.seat-grid[b-xymydw2885] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ── Seat button ─────────────────────────────────────────── */
.seat-btn[b-xymydw2885] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.1s, background 0.1s;
    line-height: 1.3;
}

.seat-btn:hover:not(:disabled)[b-xymydw2885] {
    border-color: #90caf9;
    background: #f0f7ff;
}

.seat-btn--selected[b-xymydw2885] {
    border-color: #1976d2;
    background: #e3f2fd;
}

.seat-btn--disabled[b-xymydw2885] {
    opacity: 0.45;
    cursor: not-allowed;
}

.seat-btn__section[b-xymydw2885] {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.seat-btn__detail[b-xymydw2885] {
    font-size: 11px;
    color: #6b7280;
}

.seat-btn__taken[b-xymydw2885] {
    font-size: 9px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

/* ── Per-seat pricing ────────────────────────────────────── */
.seat-prices[b-xymydw2885] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seat-price-row[b-xymydw2885] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.seat-price-label[b-xymydw2885] {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    min-width: 120px;
}

.seat-price-input[b-xymydw2885] {
    max-width: 140px;
}

/* ── Add-ons ─────────────────────────────────────────────── */
.addon-list[b-xymydw2885] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.addon-row[b-xymydw2885] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.addon-name[b-xymydw2885] {
    flex: 1;
}

.addon-price[b-xymydw2885] {
    max-width: 120px;
    flex-shrink: 0;
}

/* ── Photo drop zone ─────────────────────────────────── */
.photo-dropzone[b-xymydw2885] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    background: #fafafa;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    padding: 16px;
    text-align: center;
}

.photo-dropzone:hover[b-xymydw2885] {
    border-color: #90caf9;
    background: #f0f7ff;
}

/* ── Photo preview ───────────────────────────────────── */
.photo-preview[b-xymydw2885] {
    position: relative;
    display: inline-block;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.photo-preview__img[b-xymydw2885] {
    display: block;
    max-width: 100%;
    max-height: 260px;
    object-fit: contain;
}

.photo-preview__remove[b-xymydw2885] {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(255, 255, 255, 0.85) !important;
    border-radius: 50% !important;
}
/* /Features/Listings/Pages/List.razor.rz.scp.css */
/* ── Listing cards ───────────────────────────────────────── */
.listing-list[b-mhzlw89ec1] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.listing-card[b-mhzlw89ec1] {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 4px 12px;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #fff;
    align-items: start;
}

/* ── Game row ─────────────────────────────────────────────── */
.listing-card__game[b-mhzlw89ec1] {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing-logo[b-mhzlw89ec1] {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.listing-abbr[b-mhzlw89ec1] {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.listing-vs[b-mhzlw89ec1] {
    font-size: 10px;
    color: #9ca3af;
}

.listing-date[b-mhzlw89ec1] {
    font-size: 12px;
    color: #6b7280;
    margin-left: 4px;
}

/* ── Title ────────────────────────────────────────────────── */
.listing-card__title[b-mhzlw89ec1] {
    grid-column: 1;
    font-size: 13px;
    color: #374151;
}

/* ── Seats ────────────────────────────────────────────────── */
.listing-card__seats[b-mhzlw89ec1] {
    grid-column: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.seat-chip[b-mhzlw89ec1] {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #374151;
    font-weight: 500;
}

/* ── Meta (price + status) — right column spanning all rows ─ */
.listing-card__meta[b-mhzlw89ec1] {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.listing-price[b-mhzlw89ec1] {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.listing-price__mode[b-mhzlw89ec1] {
    font-size: 11px;
    font-weight: 400;
    color: #6b7280;
}

/* ── Actions ──────────────────────────────────────────────── */
.listing-card__actions[b-mhzlw89ec1] {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    gap: 4px;
    justify-content: flex-end;
    align-items: center;
}

/* ── Status badges ────────────────────────────────────────── */
.status-badge[b-mhzlw89ec1] {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

.status-badge--active[b-mhzlw89ec1] {
    background: #dcfce7;
    color: #15803d;
}

.status-badge--partiallyheld[b-mhzlw89ec1] {
    background: #fef9c3;
    color: #a16207;
}

.status-badge--fullyheld[b-mhzlw89ec1] {
    background: #ffedd5;
    color: #c2410c;
}

.status-badge--sold[b-mhzlw89ec1] {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-badge--cancelled[b-mhzlw89ec1] {
    background: #f3f4f6;
    color: #9ca3af;
}
/* /Features/Messaging/Pages/MessagesPage.razor.rz.scp.css */
/* ── Shell ───────────────────────────────────────────── */
.messages-shell[b-z49zo3xymx] {
    display: flex;
    height: calc(100vh - 52px); /* MudAppBar Dense height */
    overflow: hidden;
}

.msg-unauthenticated[b-z49zo3xymx] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40vh;
}

/* ── Conversation list panel ─────────────────────────── */
.convo-panel[b-z49zo3xymx] {
    width: 260px;
    flex-shrink: 0;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fafafa;
}

.convo-panel__header[b-z49zo3xymx] {
    padding: 12px 14px 10px;
    border-bottom: 1px solid #e5e7eb;
}

.convo-panel__empty[b-z49zo3xymx] {
    padding: 16px;
}

.convo-list[b-z49zo3xymx] {
    flex: 1;
    overflow-y: auto;
}

/* ── Conversation item ───────────────────────────────── */
.convo-item[b-z49zo3xymx] {
    padding: 10px 14px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background 0.1s;
}

.convo-item:hover[b-z49zo3xymx] {
    background: #f0f7ff;
}

.convo-item--active[b-z49zo3xymx] {
    background: #e3f2fd;
    border-left: 3px solid #1976d2;
    padding-left: 11px;
}

.convo-item__name[b-z49zo3xymx] {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.convo-item__preview[b-z49zo3xymx] {
    font-size: 11px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

/* ── Thread panel ────────────────────────────────────── */
.thread-panel[b-z49zo3xymx] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

.thread-panel__empty[b-z49zo3xymx] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.thread-header[b-z49zo3xymx] {
    padding: 10px 16px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    flex-shrink: 0;
}

/* ── Message list ────────────────────────────────────── */
.message-list[b-z49zo3xymx] {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-list__empty[b-z49zo3xymx] {
    text-align: center;
    margin-top: 16px;
}

/* ── Individual message ──────────────────────────────── */
.msg[b-z49zo3xymx] {
    display: flex;
    flex-direction: column;
    max-width: 70%;
}

.msg--mine[b-z49zo3xymx] {
    align-self: flex-end;
    align-items: flex-end;
}

.msg--theirs[b-z49zo3xymx] {
    align-self: flex-start;
    align-items: flex-start;
}

.msg__bubble[b-z49zo3xymx] {
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word;
}

.msg--mine .msg__bubble[b-z49zo3xymx] {
    background: #1976d2;
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.msg--theirs .msg__bubble[b-z49zo3xymx] {
    background: #f3f4f6;
    color: #1a1a1a;
    border-bottom-left-radius: 4px;
}

.msg__time[b-z49zo3xymx] {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 3px;
    padding: 0 4px;
}

/* ── Message input row ───────────────────────────────── */
.message-input-row[b-z49zo3xymx] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
    flex-shrink: 0;
}

.message-input[b-z49zo3xymx] {
    flex: 1;
}
/* /Features/Negotiations/Components/GameListingsDialog.razor.rz.scp.css */
.listing-card[b-i5u3qhrb4l] {
    border-radius: 8px !important;
}

.seller-info[b-i5u3qhrb4l] {
    display: flex;
    align-items: center;
}

.price-badge[b-i5u3qhrb4l] {
    text-align: right;
}

.seat-chips-row[b-i5u3qhrb4l] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.seat-price[b-i5u3qhrb4l] {
    font-size: 0.7em;
    opacity: 0.8;
}

.listing-notes[b-i5u3qhrb4l] {
    color: var(--mud-palette-text-secondary);
    font-style: italic;
    border-left: 2px solid var(--mud-palette-lines-default);
    padding-left: 8px;
}
/* /Features/SeatImport/Pages/SeatImport.razor.rz.scp.css */
.phase-header[b-8bviw2si1p] {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.config-row[b-8bviw2si1p] {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.config-hint[b-8bviw2si1p] {
    color: var(--mud-palette-text-secondary);
    font-size: 0.75rem;
}

.stat-box[b-8bviw2si1p] {
    text-align: center;
    padding: 8px 0;
}

.stat-value[b-8bviw2si1p] {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--mud-palette-primary);
}

.stat-label[b-8bviw2si1p] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
    margin-top: 2px;
}

ol[b-8bviw2si1p] {
    padding-left: 1.25rem;
    margin: 0;
}

ol li[b-8bviw2si1p] {
    margin-bottom: 2px;
}

code[b-8bviw2si1p] {
    background: rgba(0, 0, 0, 0.06);
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 0.875em;
}

.seat-section[b-8bviw2si1p] {
}

.seat-section__label[b-8bviw2si1p] {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.seat-pills[b-8bviw2si1p] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.seat-pill[b-8bviw2si1p] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-family: monospace;
}

.seat-pill__del[b-8bviw2si1p] {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--mud-palette-text-secondary);
    padding: 0 2px;
    font-size: 0.9rem;
    line-height: 1;
}

.seat-pill__del:hover[b-8bviw2si1p] {
    color: var(--mud-palette-error);
}
/* /Features/TicketPackages/Components/TicketPackageEditor.razor.rz.scp.css */
.editor-header[b-mm2t6nu8av] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
}

/* ── Game list ─────────────────────────────────────────── */
.game-list[b-mm2t6nu8av] {
    max-height: 520px;
    overflow-y: auto;
}

/* ── Base row ──────────────────────────────────────────── */
.game-row[b-mm2t6nu8av] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 6px 2px 0;
    border-radius: 4px;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: background 0.1s;
    min-height: 36px;
}

/* Prevent checkbox from absorbing the row click twice */
.game-row__cb[b-mm2t6nu8av] {
    margin: 0;
    flex-shrink: 0;
}

/* ── Home game — subtle primary border only ────────────── */
/* When only home games are selected every checked row looks uniform.
   When all games are selected the blue edge distinguishes home from away. */
.game-row--home[b-mm2t6nu8av] {
    border-left-color: #90caf9; /* light blue — present but unobtrusive */
}

.game-row--home:hover[b-mm2t6nu8av] {
    background: rgba(25, 118, 210, 0.04);
}

.game-row--home.game-row--selected[b-mm2t6nu8av] {
    background: rgba(25, 118, 210, 0.06);
}

/* ── Away game — gray tint ─────────────────────────────── */
.game-row--away[b-mm2t6nu8av] {
    border-left-color: #9ca3af;
    background: #f9fafb;
}

.game-row--away:hover[b-mm2t6nu8av] {
    background: #f3f4f6;
}

.game-row--away.game-row--selected[b-mm2t6nu8av] {
    background: #f0f0f0;
}

/* ── Pre-season Home — amber tint, blue border ─────────── */
.game-row--pre-home[b-mm2t6nu8av] {
    border-left-color: #90caf9;
    background: #fffbeb;
}

.game-row--pre-home:hover[b-mm2t6nu8av] {
    background: #fef3c7;
}

.game-row--pre-home.game-row--selected[b-mm2t6nu8av] {
    background: #fde68a40;
}

/* ── Pre-season Away — amber tint, gray border ─────────── */
.game-row--pre-away[b-mm2t6nu8av] {
    border-left-color: #9ca3af;
    background: #fffbeb;
}

.game-row--pre-away:hover[b-mm2t6nu8av] {
    background: #fef3c7;
}

.game-row--pre-away.game-row--selected[b-mm2t6nu8av] {
    background: #fde68a40;
}

/* ── Pre-season Neutral — amber tint, purple border ─────── */
.game-row--pre-neutral[b-mm2t6nu8av] {
    border-left-color: #a78bfa;
    background: #fffbeb;
}

.game-row--pre-neutral:hover[b-mm2t6nu8av] {
    background: #fef3c7;
}

.game-row--pre-neutral.game-row--selected[b-mm2t6nu8av] {
    background: #fde68a40;
}

/* ── Logos ─────────────────────────────────────────────── */
.team-logo[b-mm2t6nu8av] {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ── Text elements ─────────────────────────────────────── */
.game-row__abbr[b-mm2t6nu8av] {
    font-size: 12px;
    font-weight: 600;
    min-width: 28px;
    color: #1a1a1a;
}

.game-row__vs[b-mm2t6nu8av] {
    font-size: 10px;
    color: #9ca3af;
    flex-shrink: 0;
}

.game-row__date[b-mm2t6nu8av] {
    font-size: 12px;
    color: #374151;
    margin-left: 4px;
    min-width: 72px;
    flex-shrink: 0;
}

.game-row__time[b-mm2t6nu8av] {
    font-size: 11px;
    color: #6b7280;
    min-width: 72px;
    flex-shrink: 0;
}

/* ── Type badges ───────────────────────────────────────── */
.game-badge[b-mm2t6nu8av] {
    font-size: 10px;
    font-weight: 600;
    border-radius: 10px;
    padding: 1px 8px;
    flex-shrink: 0;
    white-space: nowrap;
}

.game-badge--away[b-mm2t6nu8av] {
    color: #6b7280;
    background: #e5e7eb;
}

.game-badge--pre[b-mm2t6nu8av] {
    color: #92400e;
    background: #fde68a;
}

.game-badge--home[b-mm2t6nu8av] {
    color: #1e40af;
    background: #dbeafe;
}

.game-badge--neutral[b-mm2t6nu8av] {
    color: #5b21b6;
    background: #ede9fe;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-fgdb178035] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-fgdb178035] {
    flex: 1;
}

.sidebar[b-fgdb178035] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-fgdb178035] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-fgdb178035]  a, .top-row[b-fgdb178035]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-fgdb178035]  a:hover, .top-row[b-fgdb178035]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-fgdb178035]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-fgdb178035] {
        justify-content: space-between;
    }

    .top-row[b-fgdb178035]  a, .top-row[b-fgdb178035]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-fgdb178035] {
        flex-direction: row;
    }

    .sidebar[b-fgdb178035] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-fgdb178035] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-fgdb178035]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-fgdb178035], article[b-fgdb178035] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-fgdb178035] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-fgdb178035] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-fdntd7ymqf] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    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.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-fdntd7ymqf] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-fdntd7ymqf] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-fdntd7ymqf] {
    font-size: 1.1rem;
}

.bi[b-fdntd7ymqf] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-fdntd7ymqf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' 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-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.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.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-fdntd7ymqf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' 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-list-nested-nav-menu[b-fdntd7ymqf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-fdntd7ymqf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-fdntd7ymqf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-fdntd7ymqf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-fdntd7ymqf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' 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-arrow-bar-left-nav-menu[b-fdntd7ymqf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' 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-fdntd7ymqf] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-fdntd7ymqf] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-fdntd7ymqf] {
        padding-bottom: 1rem;
    }

    .nav-item[b-fdntd7ymqf]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-fdntd7ymqf]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-fdntd7ymqf]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-fdntd7ymqf] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-fdntd7ymqf] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-fdntd7ymqf] {
        display: none;
    }

    .nav-scrollable[b-fdntd7ymqf] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-yglm0xnfil],
.components-reconnect-repeated-attempt-visible[b-yglm0xnfil],
.components-reconnect-failed-visible[b-yglm0xnfil],
.components-pause-visible[b-yglm0xnfil],
.components-resume-failed-visible[b-yglm0xnfil],
.components-rejoining-animation[b-yglm0xnfil] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-yglm0xnfil],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-yglm0xnfil],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-yglm0xnfil],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-yglm0xnfil],
#components-reconnect-modal.components-reconnect-retrying[b-yglm0xnfil],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-yglm0xnfil],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-yglm0xnfil],
#components-reconnect-modal.components-reconnect-failed[b-yglm0xnfil],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-yglm0xnfil] {
    display: block;
}


#components-reconnect-modal[b-yglm0xnfil] {
    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-yglm0xnfil 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-yglm0xnfil 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-yglm0xnfil 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-yglm0xnfil]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-yglm0xnfil 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-yglm0xnfil {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-yglm0xnfil {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-yglm0xnfil {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-yglm0xnfil] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-yglm0xnfil] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-yglm0xnfil] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-yglm0xnfil] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-yglm0xnfil] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-yglm0xnfil] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-yglm0xnfil] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-yglm0xnfil 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-yglm0xnfil] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-yglm0xnfil {
    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;
    }
}
