/* Basis-Formular-Styles */
.mbq-quiz {
  max-width: 100vw;
  width: 80%;
  margin: 2rem auto;
  padding: 2rem;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  line-height: 1.8em;
  color: #000;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Auf kleinen Bildschirmen (Smartphone) fast volle Breite */
@media (max-width: 768px) {
  .mbq-quiz {
    width: 95%;
    margin: 0.5rem auto;
    padding: 0.5rem;
  }
}

/* Legenden und Überschriften */
.mbq-quiz legend {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 20px;
}

/* Labels und Inputs */
.mbq-quiz label {
  display: block;
  margin: 0.5rem 0;
}

.mbq-quiz input[type="text"],
.mbq-quiz input[type="email"],
.mbq-quiz input[type="tel"],
.mbq-quiz input[type="file"],
.mbq-quiz textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  font-family: inherit;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  box-sizing: border-box;
}

/* Checkboxen und Radios */
.mbq-quiz input[type="checkbox"],
.mbq-quiz input[type="radio"] {
  margin-right: 0.5rem;
}

/* Hinweistext */
.mbq-quiz .hint {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Buttons */
.mbq-quiz .nav button,
.mbq-quiz button[type="submit"] {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  background-color: #c80d0d;
  border: none;
  border-radius: 0.6rem;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.mbq-quiz .nav button:hover,
.mbq-quiz button[type="submit"]:hover {
  background-color: #a60b0b;
}

/* Navigation Buttons nebeneinander */
.mbq-quiz .nav {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
}

/* Statusmeldung */
#mbq-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #333;
}

/* Dateiupload Label */
.mbq-quiz input[type="file"] {
  padding: 0.3rem;
}