body {
background-color: black;
color: white;
font-family: Arial, sans-serif;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
min-height: 100vh;
}

#overall-score {
display: flex;
align-items: center;
justify-content: center;
font-size: 12.5em;
margin-bottom: 40px;
}
.score-box {
display: flex;
align-items: center;
justify-content: center;
padding: 0em 0.25em;
}
#blueScore #overallBlue {
color: rgb(103, 164, 255);
}
#tieScore #overallTie {
color: gray;
}
#redScore #overallRed {
color: red;
}
.score-bar {
color: white;
}

#referee-labels {
  display: flex;
  justify-content: center;
  gap: 300px;
  margin-bottom: 0.5em;
  font-size: 2em;
  font-weight: bold;
  color: #fff;
}
.ref-label {
  text-align: center;
  width: 300px;
}

#scores {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: center;
  margin-top: 2.5em;
}
#scores .score-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.0em 1.0em;
  min-width: 100px;
  width: 120px;
  /* No background, border, or shadow */
}
.corner-name {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 0.3em;
  color: #fff;
}
.corner-number {
  margin-left: 5px;
}
.blue-text {
  color: rgb(103, 164, 255);
  font-size: 1.2em;
  margin-bottom: 0.1em;
}
.red-text {
  color: red;
  font-size: 1.2em;
  margin-bottom: 0.1em;
}

#centerLabel {
  font-size: 200px !important;
  text-align: center;
  margin: 20px 0 40px 0;
  font-weight: bold;
  /* background: linear-gradient(90deg, #00c3ff 0%, #ffff1c 100%); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* background-clip: text; */
  /* text-fill-color: transparent; */
  text-shadow: 4px 4px 16px rgba(0,0,0,0.4), 0 2px 8px #fff8;
  letter-spacing: 0.08em;
  height: 1.5em;
  min-height: 1.5em;
  max-height: 1.5em;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  padding-top: 10px;
}

#scores-wrapper {
  min-height: 350px;
  height: 350px;
  transition: opacity 0.3s;
}
#scores-wrapper.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

#reset-section {
  margin-top: 20px;
  width: 100vw;
  text-align: center;
  padding-bottom: 0;
}

#corner-scores {
  margin-bottom: 120px;
}

.dropdown-container {
  margin-top: 100px;
}

/* Add space above the hide scores button */
#toggleScores {
  margin-top: 40px;
}

.generate-button-container,
.button-container {
  margin-top: 16px;
}

.dropdown-menu {
  text-align: center;
}

.dropdown-menu option {
  text-align: center;
}
