/* Grundlayout */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  font-family: sans-serif;
  background-color: #f5f5f5;
}

/* Überschrift */
h1 {
  margin-bottom: 10px;
}

/* Auswahlbereich für Start */
#startSeite {
  text-align: center;
  margin-bottom: 20px;
}

#auswahlAnzahl,
#namensEingabe {
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 8px;
  max-width: 400px;
}

#namensEingabe input[type="text"] {
  margin-bottom: 10px;
  padding: 5px;
  width: 80%;
}

/* Button-Stil */
button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#neustartButton {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #faa200;
}

button:hover {
  background-color: #45a049;
}

/* Spielfeld und Spielsteuerung */
#spielUI {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#spielCanvas {
  margin-top: 20px;
  border: 2px solid #333;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

/* Würfelergebnis */
#wurfErgebnis {
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: bold;
}

/* Feld Text Anzeige unten*/
#feldText {
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: bold;
}
