/* Grundlegendes Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
    color: #333;
}

h1 {
    color: #333;
text-align: center;
}

/* Formular-Styling */
form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 20px auto;
}

label {
    display: block;
    margin-bottom: 10px;
}

input[type="text"], input[type="number"], input[type="date"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

/* Allgemeines Button-Styling */
button {
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 5px;
    background-color: #007bff; /* Blau für allgemeine Weiter-Buttons */
}


.weiter-button {
    margin-top: 200px;
}


button:hover {
    opacity: 0.8;
}

/* Spezifische Button-Stile für "Gut", "Geht so" und "Schlecht" */
.gut {
    background-color: green;
    color: white;
}

.geht-so {
    background-color: yellow;
    color: black; /* Schwarz für bessere Lesbarkeit auf gelbem Hintergrund */
}

.schlecht {
    background-color: red;
    color: white;
}

/* Zusätzliche Stile, um die Hervorhebung zu entfernen, wenn nicht ausgewählt */
.antwort-btn {
    border: 2px solid transparent; /* Transparenter Rand, um Größenänderungen beim Auswählen zu vermeiden */
}

.antwort-btn.selected {
    border-color: #007bff; /* oder eine andere Farbe Ihrer Wahl für die Hervorhebung */
}


/* Hinzufügen von Stilen für die Hervorhebung der ausgewählten Antwort */
.antwort-btn.selected {
    border: 2px solid #007bff; /* oder eine andere Farbe Ihrer Wahl */
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

