/* Kontaktformular – allgemeines Layout */
.mod_kontakt_select form {
    background-color: #f9f9f9;
    padding: 2em;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 600px;
    margin: 2em 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
}

/* Überschrift */
.mod_kontakt_select h2 {
    font-size: 1.4em;
    margin-bottom: 1em;
    color: #333;
}

/* Formularfelder */
.mod_kontakt_select label {
    font-weight: bold;
    display: block;
    margin-bottom: 0.3em;
    margin-top: 1em;
}

.mod_kontakt_select label::after {
    content: " *";
    color: #c00;
    font-weight: normal;
}

.mod_kontakt_select input[type="text"],
.mod_kontakt_select input[type="email"],
.mod_kontakt_select select,
.mod_kontakt_select textarea {
    width: 100%;
    padding: 0.5em;
    font: inherit;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

/* Textarea etwas höher */
.mod_kontakt_select textarea {
    height: 8em;
    resize: vertical;
}

/* Button */
.mod_kontakt_select button[type="submit"] {
    background-color: #006699;
    color: #fff;
    border: none;
    padding: 0.6em 1.2em;
    margin-top: 1em;
    font: inherit;
    cursor: pointer;
    border-radius: 3px;
}

.mod_kontakt_select button[type="submit"]:hover {
    background-color: #004c73;
}

/* Fehlerliste */
.mod_kontakt_select ul.errors {
    border: 1px solid #d66;
    background-color: #fbeaea;
    padding: 1em;
    list-style-type: disc;
    margin: 1em 0;
    color: #900;
    border-radius: 3px;
}

/* Erfolgsnachricht */
.mod_kontakt_select p.success {
    background-color: #e7fbe7;
    border: 1px solid #9c9;
    padding: 1em;
    color: #060;
    border-radius: 3px;
    font-weight: bold;
    margin-top: 2em;
}

/* Antwortseite: Tabelle */
.mod_kontakt_select table.summary {
    margin-top: 1em;
    border-collapse: collapse;
}

.mod_kontakt_select table.summary td {
    padding: 0.5em 1em 0.5em 0;
    vertical-align: top;
}

.mod_kontakt_sel
