#welcomeDiv {
  width: 1000px;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #7b877b;
  z-index: 100;
}

.flexCol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.padding {
  padding: 10px;
}

.bold {
  font-weight: bold;
  font-size: 20px;
}

.flexRow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.modeButton {
  width: 200px;
  height: 50px;
  border-radius: 10px;
  background-color: #f5f5f5;
  border: 1px solid #000000;
  margin: 10px;
  cursor: pointer;
}

.modeButton:hover {
  background-color: #000000;
  color: #ffffff;
}

.nameInput {
  width: 200px;
  height: 50px;
  border-radius: 10px;
  background-color: #f5f5f5;
  border: 1px solid #000000;
  margin: 5px;
  cursor: pointer;
  font-size: medium;
  padding: 0 10px;
  display: none;
}

.optionsContainer {
  background-color: #f5f5f5;
  border-radius: 10px;
  border: 1px solid #000000;
  padding: 10px;
  width: 200px;
  margin: 5px;
}

.optionsTitle {
  font-size: 18x;
  font-weight: bold;
}

.onlyRedBalls {
  font-size: 12px;
}

.option > label,
.option > input {
  cursor: pointer;
}

#startGame {
  width: 150px;
  margin: 0 auto;
}

#nameDiv {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#controlBoardDiv {
  width: 1000px;
  height: 110px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}

.controlBoardInsideDiv {
  width: 725px;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.playerControls {
  width: 50%;
  height: 100%;
  background-color: #7b877b;
  display: flex;
  padding: 10px;
  justify-content: space-between;
  flex-direction: row;
}

.playerControls > div:first-child {
  align-items: flex-start;
}

.justifyBetween {
  justify-content: space-between;
}

#player1Controls {
  border-radius: 10px 0 0 10px;
  border: 1px solid #000000;
}

#player2Controls {
  border-radius: 0 10px 10px 0;
  border: 1px solid #000000;
  display: none;
}

#player1Name,
#player2Name {
  font-size: 20px;
  font-weight: bold;
}

#player1Score,
#player2Score {
  font-size: 20px;
  font-weight: bold;
}

#player1Timer,
#player2Timer {
  font-size: 20px;
  font-weight: bold;
}

#player1ToggleHelperLine,
#player2ToggleHelperLine {
  border-radius: 10px;
  background-color: #f5f5f5;
  border: 1px solid #000000;
  cursor: pointer;
  padding: 10px 5px;
  transition: all 0.2s ease;
}

#player1ToggleHelperLine:hover,
#player2ToggleHelperLine:hover {
  background-color: #000000;
  color: #ffffff;
}

#player2CollidedBalls,
#player1CollidedBalls {
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
}

#resetGame {
  position: absolute;
  right: 10px;
  top: 40px;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 10px;
  z-index: 100;
  cursor: pointer;
}

#resetGame:hover {
  background-color: #000000;
  color: #ffffff;
}

#gameComplete {
  width: 1000px;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #7b877b;
  z-index: 100;
  display: none;
}

#winnerName {
  font-size: 45px;
  font-weight: bold;
}

#won {
  font-size: 30px;
  font-weight: bold;
}
