.booking-form-container {
    position: relative;
    width: 60%;
    margin: 0 auto;
    padding: 20px;
    border: 3px solid #4AB7A4;
}

@media (max-width: 768px) {
    .booking-form-container {
        width: 95%; /* Change to 100% width on screens smaller than 768px */
    }
}

.booking-form-container h2 {
    text-align: center;
	font-size: 30px;
	color: #4AB7A4;
}

.booking-form-container form {
    margin-top: 20px;
}

.booking-form-container label {
    display: block;
    margin-bottom: 5px;
	color: #4AB7A4;
}

.booking-form-container input[type="text"],
.booking-form-container input[type="email"],
.booking-form-container input[type="tel"],
.booking-form-container input[type="date"],
.booking-form-container select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.booking-form-container textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical; /* Allow vertical resizing */
}

.booking-form-container input[type="submit"] {
    background-color: #4AB7A4; /* Change button background color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

.booking-form-container input[type="submit"]:hover {
    background-color: #4EBDAA; /* Change button hover background color */
}

#thank-you-overlay {
    display: none; /* Initially hide the overlay */
    position: fixed; /* Position it relative to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    z-index: 9999; /* Ensure it appears above other content */
}

#thank-you-content {
    position: absolute; /* Position it relative to the overlay */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center it horizontally and vertically */
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

#thank-you-content h3 {
    margin-top: 0;
}

#close-thank-you {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #4AB7A4; /* Change button background color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#close-thank-you:hover {
    background-color: #4EBDAA; /* Change button hover background color */
}
