body {
  font-family: Arial, sans-serif;
  background-color: #00414a;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
}

.hidden {
  display: none;
}

.center {
  text-align: center;
}

input, button, select {
  padding: 10px;
  margin: 8px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #A39A93;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  max-width: 90vw;
}

button {
  background-color: #64ACBD;
  color: white;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s, transform 0.2s;
}

button:hover {
  background-color: #46D9FA;
  transform: scale(1.03);
}

.player-word {
  font-size: 1.5em;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border: 2px solid #59524E;
  width: fit-content;
  max-width: 80%;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  color: #5B757A;
}

.button-group {
  margin-top: 20px;
}

#final-results p, #round-result p, #results p, #resultText p {
  margin: 10px 0;
  font-weight: bold;
  color: #59524E;
}

h1 {
  color: white;
  margin-bottom: 10px;
}

h2, h3, h4 {
  color: #001826;
  margin-bottom: 10px;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  padding: 5px 0;
  color: #59524E;
}

#setup-area,
#game-area,
#voting-area,
#round-result,
#final-results {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  margin: 20px auto;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 600px;
}