.wc-schedule {
    --wc-accent: #0b5cab;
    --wc-live: #d32f2f;
    --wc-border: #e5e7eb;
    --wc-muted: #6b7280;
    margin: 1.5rem 0 2.5rem;
    font-size: 15px;
    line-height: 1.5;
}

.wc-schedule__title {
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
}

.wc-schedule__updated {
    margin: 0 0 1rem;
    color: var(--wc-muted);
    font-size: 0.9rem;
}

.wc-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.wc-tab {
    border: 1px solid var(--wc-border);
    background: #fff;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    cursor: pointer;
    font: inherit;
}

.wc-tab.is-active {
    background: var(--wc-accent);
    border-color: var(--wc-accent);
    color: #fff;
}

.wc-panel {
    display: none;
}

.wc-panel.is-active {
    display: block;
}

.wc-day,
.wc-group,
.wc-round {
    margin-bottom: 1.5rem;
}

.wc-day__title,
.wc-group__title,
.wc-round__title {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    border-left: 4px solid var(--wc-accent);
    padding-left: 0.6rem;
}

.wc-standings {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.92rem;
}

.wc-standings th,
.wc-standings td {
    border: 1px solid var(--wc-border);
    padding: 0.45rem 0.5rem;
    text-align: center;
}

.wc-standings th:first-child,
.wc-standings td:first-child {
    text-align: left;
}

.wc-standings thead {
    background: #f8fafc;
}

.wc-match {
    border: 1px solid var(--wc-border);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.6rem;
    background: #fff;
}

.wc-match.status-live {
    border-color: var(--wc-live);
    box-shadow: 0 0 0 1px rgba(211, 47, 47, 0.15);
}

.wc-match__meta {
    color: var(--wc-muted);
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

.wc-match__teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.75rem;
    align-items: center;
}

.wc-team {
    font-weight: 600;
}

.wc-team:last-child {
    text-align: right;
}

.wc-score {
    font-weight: 700;
    font-size: 1.05rem;
    min-width: 4rem;
    text-align: center;
}

.wc-empty {
    color: var(--wc-muted);
}

@media (max-width: 640px) {
    .wc-match__teams {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wc-team:last-child {
        text-align: center;
    }
}
