html, body {
  margin: 0;
  padding: 0;
}

.wunschbox_main_hintergrund {
  background-color: #f5f0e6;
  max-width: 1200px;
  margin: 0 auto; /* Zentriert das Element */
  padding: 0 0px; /* optionaler Innenabstand */
  margin-bottom: 0;
  overflow: hidden;
  display: block;
  text-align: center;
}

.absenden_myButton {
  background-color: #f1c100; /* Gelb */
  color: black;
  padding: 0px 0px;
  width: 208px;
  height: 30px;
  border: medium solid #784911; /* Optional: schmaler Rahmen Braun */
  border-radius: 5px; /* Optional: Abgerundete Ecken */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.absenden_myButton:hover {
  background-color: #ffda44;
}

.zentrierter-container {
  width: 80%; /* Beispielbreite des Containers */
  margin: 0 auto; /* Zentriert den Container selbst */
}

.box {
  width: 30%; /* Feste Breite für die zu zentrierende Box */
  margin: 0 auto; /* Setzt linken und rechten Außenabstand auf automatisch, was zentriert */
  background-color: #020025; /* Zum besseren Sehen */
  padding: 20px;
  padding-top: 15px;
  padding-bottom: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 15px; /* Optional: Abgerundete Ecken */
}

.ueberschrift {
  border: none;
  background-color: #020025;
  width: 200px;
  color: white;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}

input {
  margin: 4px; /* Abstand auf allen Seiten */
  border: medium solid #000000; /* Optional: schmaler Rahmen Braun */
  border-radius: 5px; /* Optional: Abgerundete Ecken */
  width: 200px;
  font-size: 16px;
}

textarea {
  margin: 4px; /* Abstand auf allen Seiten */
  border: medium solid #000000; /* Optional: schmaler Rahmen Braun */
  border-radius: 5px; /* Optional: Abgerundete Ecken */
  width: 200px;
  font-size: 16px;
}

.aufgabe {
  font-size: 19px;
  font-weight: bold;
  color: white;
}

.eintrag {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
}

.status-form {
  margin-top: 5px;
}

.fehler {
  color: #c30000;
  font-weight: bold;
}

.wunsch-tabelle {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.wunsch-tabelle th,
.wunsch-tabelle td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

.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%;
}

.status-zelle {
  text-align: center;
  background-color: #f9f9f9;
  padding: 10px;
}

.status-row td {
  padding: 10px;
  background-color: #f9f9f9;
}

.status-container {
  text-align: center;
}

.status-text {
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
}

.status-text.wird-gesucht {
  background-color: #ffeb3b;
  color: #000;
}

.status-text.eingelegt {
  background-color: #2196f3;
  color: #fff;
}

.status-text.gespielt {
  background-color: #4caf50;
  color: #fff;
}

.status-text.nicht-gefunden {
  background-color: #f44336;
  color: #fff;
}