/* Haupt-Container des Formulars */
.form-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Eingabefelder (Name, E-Mail, Telefon, Adresse etc.) */
.form-container .form-control {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1.1rem;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

/* Speziell für Textareas (Zusatzinfos / Gesundheit) */
.form-container textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

/* Abstände zwischen den Feldern */
.form-element.mb-3 {
    margin-bottom: 20px !important;
}

/* Beschriftungen (Labels) */
.form-label, legend {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 1rem;
}

/* Radio-Buttons und Checkboxen */
.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 10px;
}

.form-check-input {
    cursor: pointer;
    width: 18px;
    height: 18px;
    margin: 0;
}

.form-check-label {
    cursor: pointer;
    margin: 0;
}

/* Grid-Layout für Start-/Enddatum nebeneinander */
/* Funktioniert, wenn du im YAML den GridContainer nutzt */
.form-container .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.form-container .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Senden-Button (?? Anfrage senden) */
button[type="submit"] {
    background-color: #ff6600; /* Deine Wunschfarbe */
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    width: auto;
}

button[type="submit"]:hover {
    background-color: #e65c00;
}

/* Responsive Anpassung für Mobilgeräte */
@media (max-width: 767px) {
    .form-container .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
