/* 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;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: black;
}

#enquiry-form label {
    margin-top: 10px;
    display: block;
}

#enquiry-form input, #enquiry-form select, #enquiry-form textarea {
    margin-bottom: 10px;
}
