/* style.css – minimalistisches, responsives Layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}
.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 0;
}
.site-header {
  background: #004a7c;
  color: #fff;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
}
.site-footer {
  background: #eee;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
/* Responsive */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    display: none;
    background: #004a7c;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav ul.show {
    display: flex;
  }
}
/* Buttons einheitlich gestalten */
button,
.btn {
  background-color: #004a7c;       /* Primärfarbe aus dem Header */
  color: #fff;                     /* Weißer Text */
  border: none;                    /* Kein Standard-Rahmen */
  padding: 0.6rem 1.2rem;          /* Größeres Klick-Ziel */
  font-size: 1rem;                 /* Lesbare Schriftgröße */
  border-radius: 4px;              /* Leicht abgerundete Ecken */
  text-decoration: none;           /* Für <a class="btn"> */
  display: inline-block;           /* Für margin/padding */
  cursor: pointer;                 /* Hand-Cursor */
  margin: 0.75em 0; /* 0.75 em oben und unten */
  transition: background-color 0.2s ease;
}

/* Falls du auch kleinere Buttons (z.B. btn-secondary) nutzt */
.btn-small {
  margin: 0.5em 0;
}

button:hover,
.btn:hover {
  background-color: #00355a;       /* Dunklerer Ton beim Hover */
}

/* Wenn du Differenzierung brauchst, z.B. sekundäre Buttons */
.btn-secondary {
  background-color: #eee;
  color: #333;
}
.btn-secondary:hover {
  background-color: #ddd;
}

/* Mehr Abstand über und unter den Ergebnis-Tabellen */
.results-table {
  margin: 1.5em 0;  /* 1,5 em oben und unten */
}

/* Mehr Abstand zwischen Absätzen und Tabellen */
.results-table + p,
h1 + .results-table,
p + .results-table {
  margin-top: 1em;
}

/* Eindeutiger Best-Slot: grün hinterlegt */
.results-table tr.best-slot {
  background-color: #d4edda;
}

/* Mehrfach-Best-Slots: gelb hinterlegt */
.results-table tr.tie-slot {
  background-color: #fff3cd;
}
