/*
 * Gemeindebüro Online – Kalender Extra
 * Such-/Filterformular [gbo_termine_suche], nutzt die Theme-Farbvariablen
 * (siehe gemeindebuero-theme/style.css: --navy, --gold, --mid, --cream, --dark).
 */

.gbo-kalx-suche {
    background: var(--cream, #F5F0E8);
    border-radius: 8px;
    padding: 16px 18px;
    margin: 0 0 16px;
}

.gbo-kalx-suche-zeile {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-bottom: 12px;
}

.gbo-kalx-suche label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85em;
    font-weight: 600;
    color: var(--dark, #1E2A35);
    flex: 1 1 160px;
    min-width: 140px;
}

.gbo-kalx-suche input,
.gbo-kalx-suche select {
    font-size: 0.95em;
    padding: 6px 8px;
    border: 1px solid #d8dee2;
    border-radius: 4px;
    background: #fff;
    font-weight: 400;
}

.gbo-kalx-suche-mehrfach select {
    min-height: 96px;
}

.gbo-kalx-suche-hinweis {
    font-size: 0.85em;
    font-weight: 400;
    color: var(--mid, #5A6A78);
}

.gbo-kalx-suche-button {
    background: var(--navy, #1E3A5F);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.9em;
    cursor: pointer;
}

.gbo-kalx-suche-button:hover {
    background: #152C48;
}

.gbo-kalx-suche-abo {
    display: inline-block;
    margin: 4px 0 18px;
    font-size: 0.9em;
    color: var(--navy, #1E3A5F);
    text-decoration: none;
}

.gbo-kalx-suche-abo:hover {
    text-decoration: underline;
}

.gbo-kalx-suche-gruppen-hinweis {
    margin: 0 0 16px;
    padding: 10px 14px;
    background: #fff;
    border-left: 3px solid var(--gold, #C9A227);
    border-radius: 0 6px 6px 0;
}

.gbo-kalx-suche-gruppen-hinweis a {
    color: var(--navy, #1E3A5F);
    font-weight: 600;
}

@media (max-width: 600px) {
    .gbo-kalx-suche-zeile {
        flex-direction: column;
    }
}
