/* General styles */
.container {
    margin-top: 20px;
}
form {
    margin-bottom: 20px;
}
ul {
    list-style: none;
    padding: 0;
}
li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
button {
    margin-top: 10px;
}

/* Calendar styles */
#calendar {
    margin-top: 10px;
    font-size: 12px;
}
.calendar-month {
    margin-bottom: 20px;
}
.calendar-month h4 {
    margin: 10px 0;
    text-align: center;
}
.calendar-table {
    width: 100%;
    border-collapse: collapse;
}
.calendar-table th, .calendar-table td {
    text-align: center;
    padding: 5px;
    border: 1px solid #ddd;
}
.calendar-table th {
    background-color: #f4f4f4;
}
.calendar-table td {
    width: 14.28%;
}
.available {
    background-color: white;
}
.unavailable {
    background-color: #ccc;
}
.selected {
    background-color: #87ceeb;
}
.past {
    background-color: #ddd;
}
.booked {
    background-color: #fff0e6;
}

/* Other page-specific styles */
#selected-dates {
    margin: 10px 0;
    font-size: 14px;
}
#selected-dates label {
    display: block;
    margin-bottom: 5px;
}
#selected-dates input[type="date"] {
    width: 100%;
    margin-bottom: 10px;
}
#book-now {
    width: 100%;
}
table.u-full-width {
    margin-top: 20px;
    width: 100%;
}
table.u-full-width th, table.u-full-width td {
    padding: 10px;
    text-align: left;
}
table.u-full-width th {
    background-color: #f4f4f4;
}
table.u-full-width td button {
    margin: 0 5px 0 0;
}
