/* Calendar Page Styles */
.day {
    flex: 1 0 14.28%;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
}

.booked {
    background-color: red;
    color: white;
}

.day-header {
    font-weight: bold;
}

.day-number {
    text-align: center;
}

.month-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.days-container {
    display: flex;
    flex-wrap: wrap;
}

footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff; /* White background for the footer */
    padding: 10px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    bottom: 0;
    width: 100%;
}

.footerbox {
    margin: 5px 0;
    color: #333;
    font-size: 14px;
}

#filler img {
    width: 100%;
    height: auto;
}
