/* Erfolgsmeldung */
.ots-message.ots-success {
    background-color: #45af69;
    color: #ffffff;
    font-weight: bold;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Fehler (optional neutral etwas angepasst) */
.ots-message.ots-error {
    background-color: #d9534f;
    color: #ffffff;
    font-weight: bold;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Formularabstand */
.ots-form-wrapper form {
    margin-top: 25px;
}

/* Nur unser eigenes Feld: Theme-Max-Height aushebeln */
.ots-form-wrapper textarea.ots-textarea {
    width: 100%;
    min-height: 120px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;

    /* Wichtig, um das Theme zu übersteuern: */
    max-height: none !important;  /* Theme-Grenze aushebeln */
    resize: vertical;             /* User darf das Feld nach unten ziehen */
    overflow: auto;               /* Scrollbalken nur, falls jemand extrem viel reinschreibt */
}

.ots-form button:hover {
    background-color: #3c965b;
}

.ots-sender-field {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 10px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    box-sizing: border-box;
}