/*** Root ************************************************************/
@import "../style.css";

/*** Inicio ************************************************************/

.field-game {
  max-width: 800px;
  margin: 30px auto 30px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1, h2 {
  text-align: center;
}
.players {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-around;
}
.player {
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  width: 45%;
  box-sizing: border-box;
}
.player.active {
  border-color: #007bff;
}
.controls {
  text-align: center;
  margin-top: 20px;
}
.controls button {
  margin: 0 10px;
}
.winner {
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
}
input[type="text"] {
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
}