body {
    background: #efe5de;
}

/* Hauptlayout: Suche links, Ergebnisse rechts */
.suche-layout {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-top: 25px;
}

.suche-links {
    width: 420px;
    flex-shrink: 0;
}

.suche-rechts {
    flex: 1;
}

/* Suchformular */
.verfuegbarkeit-suche {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    border: 1px solid #ddd;
}

.verfuegbarkeit-suche form {
    display: grid;
    gap: 14px;
}

.verfuegbarkeit-suche label {
    font-weight: 600;
    color: #3b2416;
}

.verfuegbarkeit-suche input,
.verfuegbarkeit-suche select {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid #c8b8aa;
    font-size: 15px;
    background: #fffdf9;
}

.verfuegbarkeit-suche button {
    margin-top: 8px;
    padding: 12px 18px;
    border: none;
    border-radius: 9px;
    background: #8b5e3c;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
}

.verfuegbarkeit-suche button:hover {
    background: #70492d;
}

/* Ergebnisse */
.verfuegbarkeit-ergebnisse {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
    border-left: 6px solid #8b5e3c;
}

.verfuegbarkeit-ergebnisse h3 {
    margin-top: 0;
    margin-bottom: 18px;
    color: #3b2416;
}

.verfuegbarkeit-ergebnisse ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verfuegbarkeit-ergebnisse li {
    background: #f8f1eb;
    border: 1px solid #e0cfc0;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 14px;
    line-height: 1.55;
}

.verfuegbarkeit-ergebnisse li strong {
    display: inline-block;
    font-size: 18px;
    color: #6f3f20;
    margin-bottom: 6px;
}

/* Mitarbeiter-Auswahl innerhalb eines Suchergebnisses */
.suche-select-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.suche-select-box {
    background: #fffdf9;
    border: 1px solid #d8c4b4;
    border-radius: 10px;
    padding: 8px;
}

.suche-select-box label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #6f3f20;
    margin-bottom: 4px;
}

.suche-ma-select {
    min-width: 130px;
    padding: 7px 8px;
    border-radius: 8px;
    border: 1px solid #c8b8aa;
    background: #ffffff;
}

/* Badges für weitere Mitarbeiter und Zimmer */
.suche-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.suche-badge {
    display: inline-block;
    background: #fffdf9;
    border: 1px solid #d8c4b4;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 14px;
    color: #3b2416;
}

.suche-label {
    font-weight: 700;
    color: #3b2416;
    margin-top: 10px;
    margin-bottom: 4px;
}

/* Buchungsbutton im Suchergebnis */
.suche-action-row {
    margin-top: 14px;
}

.suche-book-btn {
    display: inline-block;
    background: #8b5e3c;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 9px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.suche-book-btn:hover {
    background: #70492d;
    color: #ffffff;
}

/* Keine Treffer */
.verfuegbarkeit-ergebnisse p {
    background: #fff3f0;
    border: 1px solid #e0b4a8;
    padding: 14px;
    border-radius: 10px;
    color: #6f2b1d;
}

/* Mobile Ansicht */
@media (max-width: 1000px) {
    .suche-layout {
        flex-direction: column;
    }

    .suche-links {
        width: 100%;
    }

    .suche-rechts {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .verfuegbarkeit-suche,
    .verfuegbarkeit-ergebnisse {
        padding: 18px;
    }

    .suche-select-row {
        flex-direction: column;
    }

    .suche-ma-select,
    .suche-book-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}