.page-container {
    background-color: rgba(255, 255, 255, 0.8);
    /* Translucent white */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.schedule-header {
    margin-bottom: 20px;
}

.schedule-title {
    font-size: 24px;
    font-weight: bold;
}

.schedule-description {
    font-size: 16px;
    color: #555;
}
.table {
    background-color: #ffffff;
}
.table th,
.table td {
    padding: 12px;
}
.table-bordered {
    border: 1px solid #ddd;
}
.btn-buy-ticket {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.btn-buy-ticket:hover {
    background-color: #0056b3;
}