body {
   background-color: #EF2B2D;
   font-family: Arial, sans-serif;
}

table {
  font-family: Arial, sans-serif;
  border-collapse: collapse;
  width: 80%;
  margin: auto;
  background-color: #002F6C;
  border: 6px solid #FFD100;
}

th, td {
  border: 1px solid #FFD100;
  text-align: center;
  padding: 12px 15px;
  color: #FFD100;
}

th {
  background-color: #001B3A;
}

tr:nth-child(even) td {
  background-color: #003366;
}

tr:nth-child(odd) td {
  background-color: #002F6C;
}

.flex-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: transparent;
  padding: 20px 20px 0 20px;
}

.flex-container > section {
  background-color: #002F6C; 
  color: #FFD100;
  border: 2px solid #FFD100;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.flex-container > section:hover {
  transform: translateY(-5px);
  box-shadow: 4px 4px 15px rgba(0,0,0,0.5);
}

.game-table {
    width: 60%;
    margin: 20px auto;
    background-color: #002F6C;
    border: 6px solid #FFD100;
    padding: 20px;
    color: #FFD100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-table .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #FFD100;
}

.game-table .row:last-child {
    border-bottom: none;
}

.game-table label {
    font-size: 18px;
    font-weight: bold;
}

.game-table select {
    font-size: 16px;
    background-color: #001B3A;
    color: #FFD100;
    border: 2px solid #FFD100;
    cursor: pointer;
}

.game-table select:hover {
    background-color: #003366;
}

.game-table button {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #FFD100;
    background-color: #001B3A;
    border: 2px solid #FFD100;
    align-self: center;
    transition: background-color 0.3s, transform 0.2s;
}

.game-table button:hover {
    background-color: #003366;
    transform: translateY(-3px);
}
