body {
  font-family: Arial, sans-serif;
  background-color: #f0f8ff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#game-container {
  text-align: center;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 90%;
  max-width: 800px;
  overflow-y: auto;
  max-height: 100vh;
}

h1 {
  font-size: 24px;
  color: #333333;
  margin-bottom: 20px;
}

canvas {
  border: 2px solid #ccc;
  border-radius: 10px;
  margin: 20px 0;
}

button {
  font-size: 16px;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#roll-dice-button {
  background-color: #007bff;
  color: white;
}

#roll-dice-button:hover {
  background-color: #0056b3;
}

#next-button {
  background-color: #28a745;
  color: white;
}

#next-button:hover {
  background-color: #218838;
}

#feedback {
  font-size: 16px;
  margin: 10px 0;
}

#current-player {
  font-size: 18px;
  font-weight: bold;
  color: #555555;
  margin-top: 15px;
}
