/******************
    Optimierter User Custom CSS
    ---------------------------
*/

/* Allgemeiner Stil für Radio- und Checkbox-Optionen */
.radio-item label,
.checkbox-item label {
    color: #444;
    font-size: 16px;
    margin: 5px 5px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    display: block;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover- und Auswahl-Effekte für Radio- und Checkbox-Optionen */
.radio-item label:hover,
.checkbox-item label:hover,
input[type="radio"]:checked + label,
input[type="checkbox"]:checked + label {
    background-color: #e1320f;
    color: #fff;
    border-color: #e1320f;
}

/* Einheitlicher Stil für Checkboxen und Radio Buttons */
input[type="checkbox"],
input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    margin: 0 10px 0 0;
    vertical-align: middle;
    border: 2px solid #888;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

/* Hover- und Auswahl-Effekte für Checkboxen und Radio Buttons */
input[type="checkbox"]:hover,
input[type="radio"]:hover,
input[type="checkbox"]:checked,
input[type="radio"]:checked {
    border-color: #e1320f;
    background-color: #e1320f;
}

/* Stil für den Text "Sonstiges" */
.checkbox-item input[type="text"],
.radio-item input[type="text"] {
    margin-top: 10px;
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #444;
    background-color: #fff;
    box-sizing: border-box;
}

/* Fragetitel (Question Title) */
.survey-question-title {
    font-size: 24px;
    font-weight: bold;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Stil für die Willkommensnachricht */
.welcome .message {
    color: white;
    font-size: 24px;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* Stil für Links (blau und unterstrichen) */
a {
    color: blue;
    text-decoration: underline;
}

/* Hover-Effekt für Links (dunkleres Blau und unterstrichen) */
a:hover {
    color: #0000cc; /* Dunkleres Blau bei Hover */
    text-decoration: underline;
}

.survey-help-text {
    display: none; /* Hinweistext ausblenden */
}


