header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.index_header_hintergrund {
  background-color: #f5f0e6;
  max-width: 1200px;
  margin: 0 auto; /* Zentriert horizontal */
  padding: 0;
  margin-bottom: 0;
  overflow: hidden;
  display: block;
  text-align: center;
}

.index_responsive-img {
  max-width: 80vw;
  height: auto;
  object-fit: cover; /* Oder object-fit: contain; */
}

.logo-container {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.index_myButton {
  background-color: #f1c100;         /* Standard: Gelb */
  border: 2px solid #784911;        /* Standard: Brauner Rahmen */
  color: black;
  padding: 0;
  width: 120px;
  height: 30px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  margin: 10px 0;
  transition: background-color 0.3s, border-color 0.3s;
}

/* Hover-Effekt für normale Buttons */
.index_myButton:hover {
  background-color: #ffda44;
}

/* Aktiver Seiten-Button */
.index_myButton.active {
  background-color: #784911;        /* Braun */
  border-color: #f1c100;            /* Gelber Rahmen */
  color: white;
}

/* Hover-Effekt für aktiven Button */
.index_myButton.active:hover {
  background-color: #784911;        /* Bleibt braun beim Hover */
  border-color: #f1c100;
}

/* Login-Button bei eingeloggtem Benutzer */
.index_myButton.logged-in {
  background-color: #e0e0e0;        /* Hellgrau */
  border-color: #333;               /* Dunkler Rahmen */
  color: black;
}

/* Hover-Effekt für eingeloggten Login-Button */
.index_myButton.logged-in:hover {
  background-color: #d5d5d5;
  border-color: #222;
}

.logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.player-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;       /* macht die Logos rund */
  object-fit: cover;        /* Bild füllt den Kreis */
  border: 2px solid #fff;   /* weißer Rahmen, 2px dick */
  box-shadow: 0 0 5px rgba(0,0,0,0.3); /* optional: leichter Schatten */
}