* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f5f5f5;
    color: #2c3e50;
    line-height: 1.6;
}

header {
    background-color: #2e7d32;
    color: #ffffff;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.schedule-container {
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 16px;
}

.schedule-table {
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.schedule-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.schedule-table tbody tr:last-child {
    border-bottom: none;
}

.schedule-table tbody tr:hover {
    background-color: #e8f5e9;
    cursor: pointer;
}

.schedule-table td {
    padding: 20px 16px;
}

.schedule-table .time {
    width: 90px;
    text-align: center;
    font-weight: 500;
    color: #2e7d32;
    font-size: 15px;
}

.schedule-table .flag {
    width: 56px;
    text-align: center;
    font-size: 22px;
}

.schedule-table .event {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 400;
}

footer {
    background-color: #1b5e20;
    color: #ffffff;
    text-align: center;
    padding: 20px 16px;
    margin-top: 48px;
    font-size: 13px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0;
    font-weight: 400;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 20px;
    }
    
    .schedule-table td {
        padding: 16px 12px;
    }
    
    .schedule-table .event {
        font-size: 14px;
    }
    
    .schedule-table .time {
        font-size: 14px;
    }
}
