[data-type="singleChoiceQuestion"] * label {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
}

[data-type="singleChoiceQuestion"] * label > input{
    align-self: center;
    margin-right: 10px;
}

td label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%; 
    padding: 2rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Sanfte Übergänge für den Hintergrund */
}

/* Hover-Effekt hinzufügen */
td label:hover {
    background-color: #c6c6c6; /* Hintergrund bei Hover */
}
#trainingMaterialList li {
    margin-bottom: 30px; /* Abstand zwischen den Kategorien */
    padding-bottom: 30px; /* Innenabstand für bessere Sichtbarkeit */
    border-bottom: 3px solid #b9b9b9; /* Optische Trennlinie */
}

#trainingMaterialList li:last-child {
    border-bottom: none; /* Entferne die Linie bei dem letzten Element */
}

.button {
            background-color: #4CAF50; /* Grüne Hintergrundfarbe */
            color: white; /* Weiße Schriftfarbe */
            padding: 10px 20px; /* Innenabstand */
            text-align: center; /* Text zentrieren */
            text-decoration: none; /* Unterstreichung entfernen */
            display: inline-block; /* Inline-Block für den Button */
            font-size: 16px; /* Schriftgröße für den Button */
            border-radius: 5px; /* Abgerundete Ecken */
        }
