/* CI-Variablen */
:root {
    --ci-violet: #9560a4;
    --ci-green:  #13a538;
    --ci-yellow: #ffe500;
    --ci-text:   #333;
}

/* Allgemeine Schrift & Layout */
.em-feedback-form,
.em-feedback-success {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

/* Headlines */
.em-feedback-form h2,
.em-feedback-form h3,
.em-feedback-success h2 {
    font-weight: 600;
    color: var(--ci-violet);
}
.em-feedback-form h3 {
    margin-top: 2.5em;
}

/* Inputs */
.em-feedback-form label {
    font-weight: 600;
    display: block;
    margin-top: 1em;
}
.em-feedback-form select,
.em-feedback-form textarea {
    width: 100%;
    padding: 0.5em;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
}
.em-feedback-form textarea {
    min-height: 60px;
    resize: vertical;
}

/* Buttons */
.em-feedback-form button,
.em-feedback-success a.button {
    margin-top: 1.5em;
    padding: 0.6em 1.2em;
    background-color: var(--ci-green);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}
.em-feedback-form button:hover,
.em-feedback-success a.button:hover {
    background-color: var(--ci-violet);
}

/* Highlight-Box (z. B. Success Screen) */
.em-feedback-success {
    max-width: 800px;
    margin: 2em auto;
    padding: 1.5em;
    background-color: var(--ci-yellow);
    border-radius: 8px;
    text-align: center;
    color: var(--ci-text);
}

/* Ergänzungen für feedback.css */

/* Container für eine Fragegruppe (Bewertung + Textfeld) */
.feedback-item {
    border: 1px solid #e0e0e0;
    padding: 1em;
    margin-top: 1.5em;
    border-radius: 4px;
}

.feedback-item legend {
    font-weight: 600;
    padding: 0 0.5em;
    font-size: 1.1em;
}

/* Gruppe der Radio-Buttons */
.rating-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 1em;
    border: none;
    padding: 0;
}

/* Label für einen einzelnen Radio-Button */
.rating-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: normal;
}

.rating-label input[type="radio"] {
    width: auto; /* Radio-Buttons nicht auf volle Breite ziehen */
}

/* Label für das Textfeld "Stichpunkte" */
.feedback-item > label {
    font-weight: 600;
    margin-top: 0.5em;
    margin-bottom: 0.25em;
    display: block;
}