/* Search Container */


.search-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 120px auto; /* Center container and add spacing above */
    padding-top: 40px; /* Add internal padding for breathing room */
}


.search-title {
    text-align: center;
    font-size: 2em;
    color: #008080;
    margin-bottom: 30px;
}

/* Accordion Layout */
.accordion-section {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-section h3 {
    background-color: #008080;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    margin: 0;
    font-size: 1.3em;
}

.accordion-section h3:hover {
    background-color: #005f5f;
}

.accordion-content {
    display: none;
    padding: 20px;
    background-color: #fff;
}

.accordion-section.active .accordion-content {
    display: block;
}

/* Form Layout */
.form-row {
    margin-bottom: 15px;
}

.form-row label {
    font-size: 1em;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

/* Input and Select Fields */
input[type="text"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    box-sizing: border-box; /* Ensures padding doesn't increase overall width */
}

/* Textarea */
textarea {
    resize: vertical; /* Allows the user to resize the textarea vertically but not horizontally */
    min-height: 100px; /* Ensures a default minimum height */
}

input[type="text"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: #008080;
    outline: none;
}

/* Checkbox Group */
.checkbox-group label {
    display: inline-block;
    margin-right: 15px;
    font-size: 1em;
    cursor: pointer;
}

.checkbox-group input {
    margin-right: 5px;
}



/* Submit Button */
.cta-button {
    background-color: #008080;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: block;
    margin: 0 auto;
}

.cta-button:hover {
