.form-group {
    padding-top: 5px;
}

#start-button {
    padding-top: 20px;
}

.validation {
    color:red;
    display: none;
}

h2, h3 {
    font-size: 2em;
}

h4, p, input, u, button {
    font-size: 1.5em;
}

h4 {
    margin-top: 0.6em;
    margin-bottom: 0.3em;
    color: rgb(96, 96, 96);
}

#display, #options, #remove-player-message, .table-container {
    display: none;
}

#display {
    border: 1px transparent solid;
}

#add-player-confirmation, #remove-player-confirmation {
    color: green;
}

#remove-player-id {
    margin-top: 10px;
    margin-bottom: 10px;
}

.flex-container {
    display: flex;
    flex-direction: column;
}

#display-round {
    color: rgb(96, 96, 96);
    margin-top: 0;
    margin-bottom: 0.2em;
}

#court-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#court {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 130px;
}

#court {
    h3 {
        margin-top: 0.6em;
        margin-bottom: 0.6em;
        color: blue;
    }
    p {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    h2 {
        margin-top: 0.4em;
        margin-bottom: 0.6em;
    }
}

#bye-ids {
    overflow-wrap: break-word;
    margin-top: 0;
}

#options-toggle-container {
    margin-top: 10px;
    margin-bottom: 20px;
}

#options-toggle {
    color: rgb(25, 179, 171);
}

.table-container {
    overflow:auto;
    max-height: 450px;
}

.table-container, th, td {
    border:1px solid black;
}

td {
    text-align: center;
}

#stats-toggle {
    margin-top: 20px;
}

.direction-button-container {
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.direction-button {
  background-color: rgb(220, 220, 220);
  border: 1px solid #222222;
  border-radius: 10px;
  box-sizing: border-box;
  color: #222222;
  cursor: pointer;
  display: inline-block;
  font-family: Circular,-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 20px;
  outline: none;
  padding: 0px 30px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s,-ms-transform .1s,-webkit-transform .1s,transform .1s;
  user-select: none;
  -webkit-user-select: none;
  width: auto;
}

/* Action button */
.action-button {
  background-color: rgb(196, 253, 196);
  border: 1px solid #222222;
  border-radius: 10px;
  box-sizing: border-box;
  color: #222222;
  cursor: pointer;
  display: inline-block;
  font-family: Circular,-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  outline: none;
  padding: 26px 46px;
  position: relative;
  text-align: center;
  text-decoration: none;
  /* touch-action: manipulation; */
  transition: box-shadow .2s,-ms-transform .1s,-webkit-transform .1s,transform .1s;
  user-select: none;
  -webkit-user-select: none;
  width: auto;
}

.action-button:focus-visible {
  box-shadow: #222222 0 0 0 2px, rgba(255, 255, 255, 0.8) 0 0 0 4px;
  transition: box-shadow .2s;
}

.action-button:active {
  background-color: rgba(220, 249, 220, 0.978);
  border-color: #000000;
  transform: scale(.96);
}

/* Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 17px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
  }
