body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f0f4f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 500px;
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.letras {
  font-size: 3em;
  font-weight: bold;
  margin: 20px 0;
  color: #333;
}

input {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  font-size: 1em;
}

.boton {
  padding: 10px 20px;
  margin: 5px;
  font-size: 1em;
  background-color: #0078d4;
  color: white;
  border: none;
  border-radius: 5px;
}

.boton:hover {
  background-color: #005fa3;
}

.frases button {
  display: block;
  width: 100%;
  margin: 5px 0;
  padding: 10px;
  font-size: 1em;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: white;
  transition: background-color 0.2s;
}

.frases button.votado {
  background-color: #d4edda;
  border-color: #28a745;
}

.frases button.mine {
  background-color: #e6f7ff;
  border-color: #0078d4;
  color: #005fa3;
}

.boton:disabled,
.boton.disabled,
.frases button:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  border-color: #999;
}

.resultado {
  margin-top: 20px;
  font-size: 1.5em;
  color: #0078d4;
  font-weight: bold;
}

.nombre-jugador {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 10px;
}

/* style.css */

.boton:disabled,
.boton.disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}
