/* Basis-Styling */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
}

input[type="text"], button, label {
    font-size: 30px; // was 16
    height: 40px; // by av für angepasste Höhe Eingabefeld
    padding: 10px;
    margin: 5px 0;
    display: block;
    width: 100%;
}

button {
    padding: 15px;
    font-size: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Anpassungen für Themenblöcke und Fragen */
h2 {
    font-size: 22px;
    margin-top: 30px;
    color: #333;
}

.frage p {
    font-weight: bold;
    background-color: #f2f2f2;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

/* Anpassungen für mobile Geräte */
@media (max-width: 768px) {
    .container {
        width: 95%;
        margin: 10px auto;
        padding: 20px;
    }

    h1, h2, input[type="text"], button, label {
        font-size: 18px; /* Größere Schrift für bessere Lesbarkeit */
    }

    .frage p, .themenblock {
        font-size: 18px; /* Vergrößern der Fragen und Themenblöcke */
    }

    input[type="radio"], label {
        margin: 10px 0; /* Größerer Abstand für leichtere Touch-Interaktion */
        display: inline-block; /* Anpassung, falls Sie möchten, dass die Labels neben den Radiobuttons erscheinen */
        width: auto; /* Zurücksetzen der Breite für Radiobuttons und Labels */
    }
}

/* Anpassungen für sehr kleine Bildschirme */
@media (max-width: 480px) {
    h1, h2, input[type="text"], button, label {
        font-size: 20px; /* Noch größere Schrift für sehr kleine Bildschirme */
    }

    .frage p, .themenblock {
        font-size: 20px; /* Weitere Vergrößerung für beste Lesbarkeit */
    }
}
