
/* Basis-Styles für flexibles Layout */
div[style] {
  display: flex;
  flex-wrap: wrap; /* Ermöglicht Zeilenumbruch */
  justify-content: space-between;
}


.quiz-container {
      background: linear-gradient(135deg, #f2f2f2, #d9edf7); /* Farbverlauf für den Hintergrund */
      margin: 0;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      padding: 20px;
      border-radius: 12px; /* Abgerundete Ecken */
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Leichter Schatten */
      width: 500px;
      text-align: center; /* Zentrierter Text */
}
.quiz-container a {
      text-decoration: none;
      font-weight: bold;
}
.champions-container {
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 20px;
      margin-left: 20px; /* Abstand zum Quiz-Container */
      width: 250px; /* Festgelegte Breite */
      font-family: 'Segoe UI', sans-serif; /* Konsistente Schriftart */
}

.champions-container h3 {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #333;
}

.champions-container ul {
      list-style: none; /* Entfernt die Standard-Liste-Symbole */
      padding: 0;
}

.champions-container li {
      margin-bottom: 10px; /* Abstand zwischen den Einträgen */
      font-size: 1em;
      color: #000;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Schatten für die Einträge */
      padding: 5px;
      border-radius: 5px;
}
.table-container {
      max-height: 400px; /* Höhe der Tabelle festlegen */
      overflow-y: auto; /* Vertikales Scrollen aktivieren */
      border: 1px solid #ccc; /* Optional: Rahmen um die Tabelle */
}
.table-container th {
      position: sticky; /* Kopfzeile fixieren */
      top: 0; /* Bleibt oben fixiert */
      background-color: #f4f4f4; /* Hintergrundfarbe der Kopfzeile */
      z-index: 1; /* Sicherstellen, dass die Kopfzeile über anderen Inhalten liegt */
}

.quiz-header {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px; /* Große, auffällige Schriftgröße */
    font-family: 'Georgia', serif; /* Elegante, klassische Schriftart */
    color: #6b4226; /* Warmer, whisky-inspirierter Braunton */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Dezenter Schatteneffekt */
}
.quiz-subheader {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px; /* Große, auffällige Schriftgröße */
    font-family: 'Georgia', serif; /* Elegante, klassische Schriftart */
    color: #6b4226; /* Warmer, whisky-inspirierter Braunton */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Dezenter Schatteneffekt */
}
.question {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #555; /* Weicher Textton */
}

.answers button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    font-size: 1em;
    border: none;
    border-radius: 8px; /* Abgerundete Ecken */
    cursor: pointer;
    background: #666666; /* Hellgrauer Button-Hintergrund */
    color: white; /* Dunkler Text */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schatteneffekt */
    transition: background 0.3s ease, transform 0.2s ease; /* Sanfte Übergänge */
}

.answers button:hover {
    background: #555555; /* Dunklerer Hover-Effekt */
    //color:black;
    transform: translateY(-2px); /* Leichter Hover-Effekt */
}

.answers button.correct {
    background: #32cd32; /* Hellgrün für korrekte Antwort */
    border: 2px solid green;
    color: #000; /* Schwarzer Text */
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 128, 0, 0.3); /* Grüne Schatten */
}

.answers button.incorrect {
    background: #dc143c; /* Kräftiges Rot für gewählte falsche Antwort */
    border: 2px solid red;
    color: #fff; /* Weißer Text */
}

.answers button.other-incorrect {
    background: #f7cac9; /* Hellrot für andere falsche Antworten */
    border: none;
    color: #333; /* Dunkler Text */
}

.navigation-button {
    display: inline-block;
    padding: 12px 20px;
    font-size: 1em;
    font-weight: bold;
    color: #fff; /* Weißer Text */
    background: #1565c0; /* Auffälliges Blau */
    border: 1px solid #0056b3; /* Passender blauer Rand */
    border-radius: 8px; /* Abgerundete Ecken */
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    transition: background 0.3s ease, transform 0.2s ease; /* Sanfte Übergänge */
}

.navigation-button:hover {
    background: #0056b3; /* Dunkleres Blau beim Hover */
    transform: translateY(-2px); /* Leichter Hover-Effekt */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Intensiverer Schatten */
}

.navigation-button:disabled {
  background-color: #cccccc;   /* Hellere Farbe für den deaktivierten Zustand */
  color: #666666;              /* Angepasste Textfarbe */
  border: 2px solid #999999;   /* Deutlich sichtbarer Rand */
  cursor: not-allowed;         /* Zeigt an, dass der Button nicht anklickbar ist */
  opacity: 0.6;                /* Optional: macht den Button etwas transparenter */
}
.navigation-button:active {
    background: #003d80; /* Noch dunkleres Blau beim Klick */
    transform: scale(0.97); /* Klick-Effekt mit leichtem Schrumpfen */
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); /* Reduzierter Schatten */
}
.next-button input {
margin-top: 20px;
padding: 10px 20px;
font-size: 1em;
border: none;
border-radius: 8px; /* Abgerundete Ecken */
background: #6c757d; /* Elegantes Grau */
color: #fff; /* Weißer Text */
cursor: pointer;
transition: background 0.3s ease, transform 0.2s ease; /* Sanfte Übergänge */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.next-button input:hover {
background: #5a6268; /* Dunklerer Hover-Effekt */
transform: translateY(-2px);
}

select {
padding: 10px;
font-size: 1em;
border-radius: 8px; /* Abgerundete Ecken */
background: #e7e7e7;
border: none;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: background 0.3s ease, transform 0.2s ease;
}

select:hover {
background: #cfcfcf;
}

@media (max-width: 768px) {
  .quiz-header {
      font-size: 20px;
  }
  .quiz-subheader {
      font-size: 18px;
  }
  .stern img{
    height:25px;
  }
  .question {
  font-size: 1.1em;
  }
  .quiz-container, .champions-container {
    width:100%;
  }
  .champions-container {
    order: 2; /* Platzierung unter dem Quiz-Container */
  }
  .quiz-container {
    order: 1; /* Bleibt oben */
  }


}
