html, body {
  margin: 0;
  padding: 0;
}

/* ---------------------------------------------------------
   Hauptbereich
--------------------------------------------------------- */
.wunschbox_main_hintergrund {
  background-color: #f5f0e6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  text-align: center;
}

/* ---------------------------------------------------------
   Formularbox
--------------------------------------------------------- */
.zentrierter-container {
  width: 80%;
  margin: 0 auto;
}

.box {
  width: 300px;
  margin: 40px auto;
  background-color: #020025;
  padding: 20px 20px 30px 20px;
  border-radius: 15px;
}

.ueberschrift {
  border: none;
  background-color: #020025;
  width: 200px;
  color: white;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}

input, textarea {
  margin: 4px;
  border: medium solid #000;
  border-radius: 5px;
  width: 200px;
  font-size: 16px;
}

textarea {
  height: 80px;
}

.aufgabe {
  font-size: 19px;
  font-weight: bold;
  color: white;
}

/* ---------------------------------------------------------
   Absenden-Button
--------------------------------------------------------- */
.absenden_myButton {
  background-color: #f1c100;
  color: black;
  width: 208px;
  height: 30px;
  border: medium solid #784911;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.absenden_myButton:hover {
  background-color: #ffda44;
}

/* ---------------------------------------------------------
   Fehleranzeige
--------------------------------------------------------- */
.fehler {
  color: #c30000;
  font-weight: bold;
  margin-top: 10px;
}

/* ---------------------------------------------------------
   Tabelle
--------------------------------------------------------- */
.wunsch-tabelle {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 15px;
}

.wunsch-tabelle th {
  background: #333;
  color: #fff;
  padding: 8px;
  text-align: left;
}

.wunsch-tabelle td {
  padding: 8px;
  border-bottom: 1px solid #ccc;
}

.wunsch-tabelle tr:nth-child(even) .eintrag {
  background: #f7f7f7;
}

.wunsch-tabelle th:nth-child(1),
.wunsch-tabelle td:nth-child(1) {
  width: 80px;
  white-space: nowrap;
}

.wunsch-tabelle th:nth-child(5),
.wunsch-tabelle td:nth-child(5) {
  width: 40%;
}

/* ---------------------------------------------------------
   Statusbereich
--------------------------------------------------------- */
.status-row td {
  padding: 10px;
  background-color: #fafafa;
}

.status-container {
  text-align: center;
  margin-top: 5px;
}

.status-text {
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  min-width: 90px;
}

/* Statusfarben */
.status-text.offen {
  background: #777;
}

.status-text.wird-gesucht {
  background: #007bff;
}

.status-text.eingelegt {
  background: #ff9800;
}

.status-text.gespielt {
  background: #4caf50;
}

.status-text.nicht-gefunden {
  background: #e53935;
}

/* ---------------------------------------------------------
   Status-Buttons (Moderator)
--------------------------------------------------------- */
.status-buttons button {
  padding: 4px 10px;
  margin-right: 6px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  font-size: 13px;
}

.status-buttons button[data-status="wird gesucht"] {
  background: #007bff;
}

.status-buttons button[data-status="eingelegt"] {
  background: #ff9800;
}

.status-buttons button[data-status="gespielt"] {
  background: #4caf50;
}

.status-buttons button[data-status="nicht gefunden"] {
  background: #e53935;
}

.status-buttons button:hover {
  opacity: 0.85;
}

/* ---------------------------------------------------------
   Audio-Button
--------------------------------------------------------- */
.wunschbox-audio-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: fit-content;
  margin: 0 auto;
}

.audio-activate-btn {
  padding: 10px 14px;
  background: #222;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.audio-activate-btn:hover {
  background: #333;
}
