/* Common styles for all pages */
body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  background-color: #000000;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #202020;
}

.navigation a {
  color: #FFD700;
  text-decoration: none;
  margin: 0 10px;
}

.navigation a:hover {
  color: #ffffff;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  max-width: 400px;
}

.form h2 {
  margin-bottom: 20px;
}

.form label {
  margin-bottom: 5px;
}

.form input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form button {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #007BFF;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.form button:hover {
  background-color: #0056b3;
}

.game-container {
  display: none;
}

.game-container table {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  border-collapse: collapse;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.game-container td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.game-container .countdown-timer {
  background-color: #000;
  color: #fff;
  padding: 10px;
  font-size: 18px;
}

.game-container .countdown-timer span {
  display: block;
}

.game-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.game-controls button {
  margin: 10px;
}

.team-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.team-action {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  max-width: 200px;
  margin: 10px;
}

.team-action h3 {
  margin-top: 0;
}

.team-action button {
  margin-top: 10px;
}

.team-action .players {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.team-action .player {
  margin: 0 2px;
  font-size: 20px;
  color: green;
}

.team-action .player.eliminated {
  color: red;
}

.game-stats {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  text-align: left;
}

.game-stats h2 {
  margin-bottom: 10px;
}

.game-stats table {
  width: 100%;
  border-collapse: collapse;
}

.game-stats th,
.game-stats td {
  padding: 8px;
  border-bottom: 1px solid #ccc;
}

.game-stats th {
  background-color: #f2f2f2;
}
