/* Buchungs- und Anmeldeformular Styles */
body {
    background-color: #f2f3f5 !important;
}

/* Reduzierte Außen- und Innenränder für den Hauptcontainer */
.booking-container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    margin-top: 0.75rem !important;
    margin-bottom: 1.5rem !important;
    width: 98%;
    max-width: 98%;
}

@media (min-width: 768px) {
    .booking-container {
        padding: 15px 20px;
        width: 96%;
        max-width: 96%;
    }
}

@media (min-width: 1200px) {
    .booking-container {
        padding: 20px 25px;
        width: 95%;
        max-width: 1240px;
    }
}

/* Header-Kasten für Logo & Einleitungstext */
.booking-header-box {
    background-color: #faf8f5;
    border: 1px solid burlywood;
    border-radius: 8px;
    padding: 15px 18px;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.booking-header-box h4 {
    margin-top: 0;
    color: #333333;
}

/* Reduzierung der vertikalen Zeilen- und Feldabstände */
.booking-container form {
    width: 100%;
}

.booking-container .row {
    margin-bottom: 0;
}

.booking-container .mb-3 {
    margin-bottom: 0.75rem !important; /* Ca. 1 mm (4px) höher als 0.5rem */
}

.booking-container .form-group {
    margin-bottom: 0;
}

.booking-container h4 {
    margin-top: 0.85rem;
    margin-bottom: 0.4rem;
}

/* Validierungs-Styles */
.was-validated .no-validate-success:valid {
    border-color: #ced4da !important;
    background-image: none !important;
}

.was-validated .validate-red-if-no:not(:checked) {
    border-color: #dc3545 !important;
    background-image: none !important;
}

.was-validated .validate-red-if-no:not(:checked) ~ .form-check-label {
    color: #dc3545 !important;
}

/* Aufklappbarer Verpflegungsbereich */
.btn-toggle-verpflegung {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #555555;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    padding: 4px 0;
}

.btn-toggle-verpflegung:hover {
    color: #8b4513;
    text-decoration: none;
}

.btn-toggle-verpflegung[aria-expanded="true"] .toggle-icon {
    transform: rotate(90deg);
}

.toggle-icon {
    display: inline-block;
    transition: transform 0.2s ease-in-out;
    font-size: 2.0rem;
    line-height: 1;
}

.verpflegung-box {
    background-color: #faf8f5;
    border: 1px solid burlywood;
    border-radius: 6px;
    padding: 12px 15px;
}
