
#bookingForm {
    margin: 20px auto 20px auto;
    padding:25px 40px;
    border-radius: 10px;
    background-color: white;
    width: 100%;
    max-width: 800px;
    border-left: 10px solid #afd757;
    color: #000000;
    text-align: center;
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    color: #000000;
    display: block;
}

.form-row {
    display: flex;
    margin: 0;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-left: -10px;
}

.tour-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

.tour-type-option {
    display: none;
    padding: 8px 12px;
    border: 1px solid #03624c;
    border-radius: 5px;
    background-color: white;
    color: #03624c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-type-option:hover, .tour-type-option.selected {
    background-color: #03624c;
    color: white;
}

input[type="date"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #03624c;
    border-radius: 5px;
    outline: none;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    color: #03624c;
    font-weight: bold;
}

input[type="date"]::placeholder {
    color: #03624c;
}

#checkAvailability {
    background-color: #4caf50;
    color: #FFFAEC;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

#checkAvailability:hover {
    background-color: #FBFFE4;
    color: #1B4D3E;
}

.message-box {
    color: #03624c;
    border-radius: 5px;
    margin-top: 20px;
}
.loading {
    color: blue;
}
.error {
    color: #03624c;
}
#proceedToReservation {
    padding: 10px 18px;
    background: green;
    margin-top: 15px;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.account-info {
    margin-top: 150px;
    margin-bottom: 150px;
    background-color: #f0f0f0;
}

.account-info p{
    line-height: 3;
    margin-top: 15px;
    margin-bottom: 15px;
}

h1{
    alignment: center;
}

.user-info{
    display: flex;
    flex-direction: column;
}
.profile-btn{
    color:white;
}
.accom-divider {
    width: 120px;
    height: 4px;
    background-color:#508E87;
    margin: 10px 0;
    border-radius: 10px;
}