﻿body {
    font-family: Segoe UI,Arial,sans-serif;
    background: #f6f8fb;
}

.court-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 18px 0;
}

.court-title {
    min-width: 140px;
    background: #0d4b8f;
    color: #fff;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.year-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
}

.year-btn {
    min-width: 90px;
    height: 42px;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
}

    .year-btn:hover {
        background: #0d6efd;
        color: #fff;
        border-color: #0d6efd;
    }

    .year-btn.active {
        background: #0d6efd;
        color: #fff;
        border-color: #0d6efd;
    }
