/* Formular-Styling */
.beschwerde-formular {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.beschwerde-formular h1 {
    color: #333;
    margin-bottom: 20px;
}

.beschwerde-formular h2 {
    color: #555;
    margin-bottom: 15px;
}

.beschwerde-formular fieldset {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
}
.beschwerde-formular legend {
    font-weight: bold;
    padding: 0 10px;
}

.beschwerde-formular label {
    display: block;
    margin-top: 10px;
}

.beschwerde-formular input[type="text"],
.beschwerde-formular input[type="email"],
.beschwerde-formular input[type="date"],
.beschwerde-formular input[type="time"],
.beschwerde-formular textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.beschwerde-formular textarea {
    height: 100px;
}

.beschwerde-formular .checkbox-group {
    margin-top: 10px;
}

.beschwerde-formular .checkbox-group label {
    display: inline-block;
    margin-right: 10px;
}

.beschwerde-formular .submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.beschwerde-formular .submit-button:hover {
    background-color: #45a049;
}

/* Nachrichten-Styling */
.beschwerde-erfolg,
.beschwerde-fehler {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.beschwerde-erfolg {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

.beschwerde-fehler {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}