.game-control-button {
  margin-top: 30px;
  margin-left: 20px;
  margin-right: 14px;
  border: none;
  padding: 10px;
  background-color: white;
}

.game-control-button:hover {
  background-color: rgb(200, 200, 200);
}

.result-new-game-button {
  margin-top: 25px;
  margin-left: 0;
  margin-right: 0;
}

.result {
  background-color: rgb(60, 60, 60);
  position: absolute;
  top: 220px;
  bottom: 286px;
  left: 180px;
  right: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  font-weight: 700;
  z-index: 103;
}

/* .start-game-menu {
  background-color: rgb(60, 60, 60);
  position: absolute;
  top: 190px;
  bottom: 256px;
  left: 80px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  color: white;
  font-size: 28px;
  font-weight: 700;
  z-index: 103;
  padding-top: 25px;
} */

.start-game-menu {
  position: absolute;
  z-index: 101;
}

.start-game-menu-text {
  color: white;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.start-game-menu button {
  margin: 0;
  height: 50px;
  width: 100px;
  margin: 15px;
  margin-bottom: 25px;
}

/*.select-player-color-menu {
  background-color: rgb(60, 60, 60);
  position: absolute;
  top: 190px;
  bottom: 256px;
  left: 140px;
  right: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  color: white;
  font-size: 28px;
  font-weight: 700;
  z-index: 103;
  padding-top: 25px;
}*/

.select-player-color-menu {
  position: absolute;
  z-index: 102;
  color: white;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  
}

.select-player-color-menu button {
  margin: 0;
  height: 50px;
  width: 100px;
  margin: 15px;
  margin-bottom: 25px;
}

.select-bots-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 25px;
  font-weight: 700;
  z-index: 103;
  padding: 30px;
  padding-bottom: 12px;
  z-index: 102
}

.select-bots-menu div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
}

.select-bots-menu div select {
  width: 60px;
  height: 35px;
}

.select-bots-menu-play-button {
  border: none;
  padding: 10px;
  background-color: white;
  width: 75px;
  height: 38px;
}

.select-bots-menu-play-button:hover {
  background-color: rgb(200, 200, 200);
}

.eval-bar {
  height: 600px;
  width: 33px;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
}

.white-eval {
  height: 50%;
  min-height: 0;
  width: 33px;
  background-color: white;
  position: relative;
  display: flex;
  justify-content: center;
}

.white-eval div {
  position: absolute;
  bottom: 7px;
  font-size: 14px;
}

.black-eval {
  flex: 1;
  width: 33px;
  background-color: rgb(30, 30, 30);
}

.side-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  width: 200px;
  margin-left: 30px;
  padding: 50px;
  background-color: black;
  border-radius: 30px;
}

.side-menu div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scoreboard {
  height: 600px;
  width: 300px;
  color: white;
  font-size: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.scoreboard div {
  margin: 10px;
}

.bot-speed-input {
  height: 30px;
  width: 110px;
  padding: 5px;
  margin-top: 10px;
}