.correct {
  color: #198754;
  font-weight: 600;
}
.wrong {
  color: #dc3545;
  font-weight: 600;
}
.answer-input {
  margin-bottom: 0.5rem;
}
.hidden {
  display: none;
}
.gap-inline {
  display: inline-block;
  min-width: 80px;
  max-width: 150px;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
/* Aufgabenkasten mit Schatten, leichter Hintergrund */
#quiz-box {
  background: white;
  border-radius: 0.375rem;
  padding: 1.5rem;
  box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 0.1);
  margin-bottom: 1.5rem;
}
/* Beispielsatz klar, aber keine kursive doppelte Hervorhebung */
#example-sentence {
  font-weight: 600;
  font-style: normal;
  color: #343a40;
  margin-bottom: 1rem;
}
/* Fragestellung fett, aber ohne italics */
#question-text {
  margin-top: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #dee2e6; /* wie eine dünne Linie */
  font-weight: 600;
}
/* Punktestand unten und weniger prominent */
#score {
  font-weight: 500;
  color: #6c757d;
  margin-top: 2rem;
  text-align: center;
  font-size: 1.1rem;
}
/* Buttons zentriert unter dem Quiz */
#button-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
