/* /Components/EventStatusCard.razor.rz.scp.css */
/* ── Event Status Card ── */
.event-card[b-e2x0xi6shq] {
    background: var(--event-card-bg, #1a1d23);
    border-radius: 12px;
    padding: 20px;
    color: var(--event-card-text, #e0e0e0);
    font-family: 'IBM Plex Mono', 'Consolas', monospace;
    border: 1px solid var(--event-card-border, #2a2d35);
    margin: 16px 0;
}

.event-card-loading[b-e2x0xi6shq] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    color: #888;
}

/* Header row: category + status badge */
.event-card-header[b-e2x0xi6shq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.event-card-category[b-e2x0xi6shq] {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--event-card-muted, #888);
    font-weight: 600;
}

.event-card-status[b-e2x0xi6shq] {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-open[b-e2x0xi6shq] { background: #1b3a2a; color: #4caf50; }
.status-settled[b-e2x0xi6shq] { background: #2a2a1b; color: #ff9800; }
.status-not-started[b-e2x0xi6shq] { background: #1b2a3a; color: #64b5f6; }
.status-paused[b-e2x0xi6shq] { background: #3a2a1b; color: #ff9800; }
.status-cancelled[b-e2x0xi6shq] { background: #3a1b1b; color: #ef5350; }
.status-unknown[b-e2x0xi6shq] { background: #2a2a2a; color: #999; }

/* Teams row */
.event-card-teams[b-e2x0xi6shq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}

.event-card-team[b-e2x0xi6shq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

.team-crest[b-e2x0xi6shq] {
    font-size: 2rem;
    margin-bottom: 4px;
}

.team-name[b-e2x0xi6shq] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--event-card-heading, #f0f0f0);
    line-height: 1.2;
}

.event-card-vs[b-e2x0xi6shq] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--event-card-muted, #555);
    padding: 0 4px;
}

/* Date */
.event-card-date[b-e2x0xi6shq] {
    text-align: center;
    font-size: 0.75rem;
    color: var(--event-card-muted, #888);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--event-card-border, #2a2d35);
}

/* Outcome probability circles */
.event-card-outcomes[b-e2x0xi6shq] {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--event-card-border, #2a2d35);
}

.outcome-circle[b-e2x0xi6shq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 80px;
}

.outcome-ring[b-e2x0xi6shq] {
    width: 64px;
    height: 64px;
    transform: rotate(-90deg);
}

.outcome-ring-bg[b-e2x0xi6shq] {
    fill: none;
    stroke: var(--event-card-border, #2a2d35);
    stroke-width: 3;
}

.outcome-ring-fill[b-e2x0xi6shq] {
    fill: none;
    stroke: #4a90d9;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.6s ease;
}

.outcome-highlight .outcome-ring-fill[b-e2x0xi6shq] {
    stroke: #66bb6a;
}

.outcome-pct[b-e2x0xi6shq] {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--event-card-heading, #f0f0f0);
}

.outcome-label[b-e2x0xi6shq] {
    margin-top: 6px;
    font-size: 0.7rem;
    color: var(--event-card-muted, #888);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Offers detail rows */
.event-card-offers[b-e2x0xi6shq] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.offer-row[b-e2x0xi6shq] {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

.offer-label[b-e2x0xi6shq] { color: var(--event-card-muted, #aaa); }
.offer-detail[b-e2x0xi6shq] { color: var(--event-card-text, #ccc); font-weight: 500; }

/* Footer */
.event-card-footer[b-e2x0xi6shq] {
    text-align: center;
    font-size: 0.65rem;
    color: var(--event-card-muted, #555);
    margin-top: 8px;
}
