body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.button-container {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    justify-content: center; /* Center the buttons horizontally within the container */
}

button {
    display: flex;
    flex-direction: row; /* Change from column to row to align content horizontally */
    align-items: center;
    padding: 6px 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    border-radius: 6px;
    border: none;
  
    color: #000000;
    background: linear-gradient(180deg,  #fff3cd 0%,  #fff3cd 100%);
    background-origin: border-box;
    box-shadow: 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin: 0 10px; /* Add some space between the buttons */
}

button:focus {
    box-shadow: inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2), 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), 0px 0px 0px 3.5px rgba(58, 108, 217, 0.5);
    outline: 0;
}

.schedule-container {
    /* The container itself should always be displayed */
}

.schedule {
    display: none; /* Hide all schedules by default */
}

.schedule table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.schedule th, .schedule td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.schedule th {
    background-color: #f2f2f2;
}

.schedule tr:nth-child(even) {
    background-color: #f9f9f9;
}

.schedule tr:hover {
    background-color: #ddd;
}





