body {
  margin: 0;
  padding: 0;
  background-color: black; /* Fondo negro */
  color: #ccc; /* Color de letra blanco-gris */
  font-family: monospace;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  touch-action: none; /* Previene el "pull-to-refresh" */
}

#container {
  text-align: center;
  width: 90%;
  max-width: 600px;
  padding: 20px;
}

#status {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

#results {
  font-size: 26px; /* Tamaño de fuente ajustado a 26px */
  line-height: 2rem;
  margin-top: 3rem;
  min-height: 150px;
  display: flex; /* Permite que los resultados se muestren en columna */
  flex-direction: column;
  justify-content: center;
}

#button-container {
  margin-top: 3rem;
}

#reset-button {
  background-color: transparent;
  color: #ccc;
  border: 2px solid #ccc;
  padding: 10px 20px;
  font-family: monospace;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#reset-button:hover {
  background-color: #ccc;
  color: black;
  box-shadow: 0 0 10px #ccc;
}
