body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
}

.calendar-container {
    width: 700px;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
}
/* For screens smaller than 480px */
@media (max-width: 480px) {
.calendar-container {
        width: 90%;
        padding: 15px;
    }
}

/* For screens between 481px and 768px */
@media (min-width: 481px) and (max-width: 768px) {
.calendar-container {
        width: 80%;
        padding: 18px;
    }
}

/* For screens larger than 768px */
@media (min-width: 769px) {
.calendar-container {
        width:90%; /* or keep the original width */
        padding: 20px;
    }
    
}

h1 {
    text-align: center;
    color: #D32F2F;
    font-size: 24px;
    margin-bottom: 20px;
}

.date-selector {
    text-align: center;
    margin-bottom: 10px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.timing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.timing-table th,
.timing-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.timing-table th {
    background-color: #FAFAFA;
    font-weight: bold;
}

