#calendar {
    width: 100%;
    max-width: 600px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day {
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    cursor: pointer;
}

.weekday {
    padding: 20px;
    text-align: center;
    font-size: small;
}


.available {
    background-color: #c8e6c9;
}

.selected {
    background-color: #c8d0e6 !important;
}

.unavailable {
    background-color: #ffcdd2;
    cursor: not-allowed;
}

#booking-form {
    margin: 20px auto;
    width: 300px;
    text-align: left;
}

@media only screen and (max-width: 1200px) {
    #calendar {
        margin: 0;
    }

    #booking-form {
        margin: 0;
        width: 100vw;
    }

    .day {
        padding: 5px;
        font-size: small;
    }
    
    .weekday {
        padding: 5px;
        font-size: 5px;
    }

    .no-margin-on-mobile {
        margin: 0 !important;
    }
}
#reserve-form label, input {
    display: block;
    margin: 5px 0;
}

.booking-form-margin {
    margin: 0px !important;
} 

/* textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
  } */
  
  /* Style the select boxes */
  select {
    /* width: 100%;  Set this to match the text box width */
    padding: 8px; /* Reduced padding to match the text inputs */
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
  }