/* newGameScreen container */
.newGameWindow {
    font-family: 'Roboto', sans-serif; /* Change to desired font */
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* newGameButtonDiv container */
  #newGameButtonDiv {
    font-family: 'Roboto', sans-serif; /* Change to desired font */
    text-align: center; 
    margin-top: 20px;
  }
  
  /* newGameWindow content */
  .newGameWindow-content {
    font-family: 'Roboto', sans-serif; /* Change to desired font */
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: max-content; /* Could be more or less, depending on screen size */
    padding-left: 50px; /* Add extra padding to make it wider */
    padding-right: 50px; /* Add extra padding to make it wider */
  }

  #nameInputFirst {
    font-family: 'Roboto', sans-serif; /* Change to desired font */
    margin: 5px;
  }

  #nameInput {
    font-family: 'Roboto', sans-serif; /* Change to desired font */
    margin: 5px;
  }

  #removePlayerButton{
    font-family: 'Roboto', sans-serif; /* Change to desired font */
    background-color: #f44336;
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: 'Roboto', sans-serif; /* Change to desired font */
    font-size: 12px;
    font-weight: 500;
    height: 25px;
    line-height: 20px;
    list-style: none;
    margin: 0;
    padding: 4px 10px;
  }

#startGameButton {
  font-family: 'Roboto', sans-serif; /* Change to desired font */
  background-color: #4CAF50;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: 'Roboto', sans-serif; /* Change to desired font */
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  padding: 2px 10px;
  text-align: center;
}

#startGameDiv {
  font-family: 'Roboto', sans-serif; /* Change to desired font */
  text-align: center; 
  margin-top: 5px;
}