.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

form {
    width: 100%;
    max-width: 600px;
}

.schedule {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.schedule th, 
.schedule td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.schedule td {
    color: #333;
    background-color: white;
    transition: background-color 0.5s ease;
}

.schedule td:hover {
    background-color: #f5f5f5;
    color: brown;
}

.schedule caption {
    caption-side: bottom;
    color: brown;
    text-align: right;
    font-size: 1.2em;
}

thead {
    background-color: #077ddf;
    color: white;
}

thead th {
    font-weight: bold;
    letter-spacing: 0.5px;
}

tfoot {
    background-color: #f8f8f8;
    color: #666;
    font-style: italic;
}

tfoot th {
    font-weight: normal;
    text-align: center;
}

tbody tr:nth-child(even) {
    background-color: #fafafa;
}

tbody tr:first-of-type {
    color: #6ece56;
    font-style: italic;
}

tbody tr:first-child td {
    background-color: #e1fad9;
}

tbody tr:last-of-type {
    color: #d32f2f;
    font-style: italic;
}

tbody tr:last-child td {
    background-color: #fff5f5;
}
