.day-title {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007bff;
    text-align: center;
}

.schedule-table {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
}
.schedule-table thead th {
    background: #0d6efd;
    color: #fff;
    font-weight: 700;
    border-color: #0d6efd;
    text-align: center;
}
.schedule-table tbody tr:nth-child(odd) {
    background-color: #f3f6fb;
}
.schedule-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}
.schedule-table td, .schedule-table th {
    vertical-align: middle;
    font-size: 1rem;
}
.schedule-table td:last-child, .schedule-table th:last-child {
    text-align: center;
}