/* Form Section */
#reservation-form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h4.text-accent {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 600;
}

.form-step {
    display: none;
}

/* Show the first step by default */
.form-step:first-child {
    display: block;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #3c8d3f;
    outline: none;
}

button.btn-next,
button.btn-previous,
button.btn-submit {
    background-color: #3c8d3f;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

button.btn-next:hover,
button.btn-previous:hover,
button.btn-submit:hover {
    background-color: #357d33;
}

button.btn-previous {
    background-color: #999;
}

button.btn-previous:hover {
    background-color: #666;
}

/* Unit Details Section */
.unit-booking {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.unit-booking h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.unit-booking div {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.unit-pricing {
    margin-top: 20px;
}

.unit-pricing h4 {
    font-size: 20px;
    color: #3c8d3f;
}

.unit-pricing .disclaimer-text {
    font-size: 14px;
    color: #777;
}

.image-content {
    text-align: center;
    margin: 20px 0;
}

.image-content img {
    max-width: 40%;
    height: auto;
    border-radius: 8px;
}

/* Style for form fields with errors */
.error-border {
    border: 2px solid red;
}

/* Style for error messages */
.error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
}

/* Optional: Style for input field error display */
input.error-border {
    border-color: red !important;
}

/* Optional: Style for error message below input */
input + .error-message {
    margin-top: 5px;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .form-column,
    .unit-column {
        width: 100%;
    }

    .unit-booking h2 {
        font-size: 22px;
    }

    .unit-pricing h4 {
        font-size: 18px;
    }
}
