/* Style for the main container */
#bookingForm,
#inquiryForm {
    background-color: rgba(0, 0, 0, 0.4); /* Transparent background */
    padding: 20px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Flexbox container for label and input */
.form-group {
    display: flex;
    align-items: center; /* Center items vertically */
    margin-bottom: 15px;
    max-width: 100%;
    margin: auto;
    width: 100%;
    justify-content: flex-start;
}

/* Style for labels */
.form-group label {
    margin-right: 20px; /* Space between label and input */
    font-weight: bold; /* Make label text bold */
    text-align: left; /* Align text to the right */
    width: 50%;
}

/* Style for inputs */
.form-group input,
.form-group select,
.form-group textarea {
    flex: 2; /* Input takes up space on the right */
    max-width: 100%; /* Ensure inputs don't overflow */
    padding: 8px; /* Add padding inside inputs */
    border: 1px solid #ccc; /* Light border for inputs */
    border-radius: 4px; /* Rounded corners for inputs */
}

/* Style for radio and checkbox inputs */
.form-check-input {
    margin-right: 10px; /* Space between checkbox and label */
}

/* Add space between checkbox labels */
.form-check-label {
    margin-left: 5px;
}

/* Style for button */
.btn-primary {
    background-color: #007bff; /* Primary button background */
    border-color: #007bff; /* Button border color */
    color: #fff; /* Text color for the button */
    padding: 10px 20px; /* Padding inside the button */
    border-radius: 4px; /* Rounded corners for the button */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s, border-color 0.3s; /* Smooth transition for hover effect */
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker background on hover */
    border-color: #004085; /* Darker border on hover */
}

/* Specific container for #bookingForm occupants */
#bookingForm .occupants-container {
    display: grid;
    flex-wrap: wrap;
    gap: 10px; /* Adjust space between items as needed */
    grid-template-columns: 1fr 1fr; /* Two columns with a gap between them */
}

#bookingForm .occupants-container .form-control {
    grid-template-columns: 1fr 1fr; /* Two columns with a gap between them */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Specific container for #inquiryForm occupants */
#inquiryForm .occupants-container {
    display: flex;
    flex-direction: column; /* Align children vertically */
    gap: 10px; /* Space between each occupant input */
}

/* Honeypot Spam Field */
.x-address {
    position: absolute;
    width: 0px;
    height: 0px;
    visibility: hidden;
    opacity: 0;
}