#calendar-filters {
    margin-bottom: 20px;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 8px;
}

#calendar-filters label {
    margin-right: 12px;
    font-size: 14px;
    cursor: pointer;
}

.race-calendar {
    width: 100%;
    border-collapse: collapse;
    font-family: system-ui, sans-serif;
}

.race-calendar thead {
    display: table-header-group;
}

.race-calendar th {
    background: #1e73be; /* nice WordPress-style blue */
    color: #fff;
    text-align: left;
    padding: 12px 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.race-calendar tr {
    border-bottom: 1px solid #e5e5e5;
    transition: background 0.2s ease;
}

.race-calendar tbody tr:nth-child(even) {
    background: #f9fafb;
}

.race-calendar tbody tr:hover {
    background: #eef4ff; /* very light blue tint */
}

.race-calendar tbody tr:hover td {
    color: #333; /* slightly lighter than default black */
}

.race-calendar td {
    padding: 12px 10px;
    font-size: 15px;
    color: #111; /* strong default */
}

.race-calendar tr {
    transition: background 0.2s ease, color 0.2s ease;
}

/* Strong date styling */
.race-calendar td:nth-child(2) {
    font-weight: 600;
    color: #111;
}

/* Day column subtle */
.race-calendar td:nth-child(1) {
    width: 60px;
    color: #666;
}

.pdf-button {
    display: inline-block;
    margin: 5px;
    padding: 10px 16px;
    background: #1e73be;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.pdf-button:hover {
    background: #155a96;
}