/* Program Table */
.program-day {
    margin: 2rem 0;
    border: 2px solid #667eea;
    border-radius: 15px;
    overflow: hidden;
    background: white;
}

.day-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center;
}

.program-table {
    width: 100%;
    border-collapse: collapse;
}

.program-table th,
.program-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 1.5rem;
}

.program-table th {
    background: #f8f9ff;
    font-weight: bold;
    color: #333;
}

.program-table tr:hover {
    background: #f0f2ff;
    transform: scale(1.01);
    transition: all 0.3s ease;
}