.letter-box {
    display: inline-flex;
    color: #000;
    text-align: center;
    border: 2px solid black;
    padding:5px;
 
    
    border: 2px solid #150639;
    background-color: #fffd34;
    box-shadow: inset 2px 2px 0px 0px #BfBd14;
    
  }

  .song-hint {
    display:inline-block;
    color:#000;
    margin-bottom: 20px;
    margin-top:10px;
    font-size:1.2rem;
    background-color: #fff;
    box-shadow: inset 4px 4px 0px 0px #bbb;
    border-radius: 8px;
    padding:5px 25px;
    margin:15px;
  }


  .letter-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5vw;
    /*border: 2px solid green;*/
    aspect-ratio: 1; /* Set aspect ratio to 1:1 (width:height) */
    width:3.5vw;
    height:3.5vw;
    flex-grow:1;
    Font-family: Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif;
    line-height: 1;
}

  .word-display {
    font-size: 24px;
    
    display:flex;
    flex-direction: row;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vw;
  }

  .word-box {
    display:flex;
    flex-direction: row;
    flex-wrap:wrap;
    /*border: 1px solid red;*/
    gap:.1vw;
    margin-left:5px;
    margin-right:5px;

    justify-content: center;
    align-items: center;
  }

  #guess-input {
    margin-bottom: 10px;
    text-align: center;
    width:100%;
    font-size:20px;
  }
  #message {
    font-size: 20px;
    margin-top: 10px;
    background-color: RGBA(0,0,0,0.2);
    padding:25px;
    border-radius: 8px;
  }

  #player {
    
    /*height:10px;*/
  }


  #get-ready-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

code {
  display:inline-block;
  color:#000;
  margin-bottom: 20px;
  margin-top:10px;
  font-size:1.2rem;
  background-color: #fff;
  box-shadow: inset 4px 4px 0px 0px #bbb;
  border-radius: 8px;
  padding:5px 25px;
  margin:15px;
}

.no-close .ui-dialog-titlebar-close {
  display: none;
}


.flex-button {
  display:inline-flex;
  gap:10px;
  justify-content: center;

}

.boombox-hero {
  max-height:30vh;
}

.smallBTN {
  font-size:1.2em;
  margin:4px;
  text-align: center;
}

.ui-dialog {
  max-width:95%!important;
}

.highlight-text {
  font-weight:bold;
  color:#1af7ff;
}

.player-revealed #player {
  width:100%!important;
  height:166px!important;  
}

.player-revealed {
  width:100%!important;
  height:166px!important;
  margin:15px!important;
  overflow:none!important;  
}

.letter-contnet {
  font-weight: bold;
}

input.supporter-only:not([disabled]) ~ a {
  display: none;
}



#player-list {
  border:4px solid #000000;
  margin: auto;
  text-align:center;
}

#player-list {
  padding:10px;
  max-width: 600px;
  border: 8px solid #1af7ff;
  box-shadow: inset 4px 4px 0px 0px #000000;
}

.player-row {
  cursor: pointer;
}


#score-table {
  margin:0px;
}

#player-list h4 {
  margin-bottom:1rem;
}

#score-table td {
  border: 0px;
  font-family: "ModeNine", Monaco, monospace;
  color:#ffffff;
  border-top:0px !important;
  vertical-align: middle !important;
  padding:0.25rem;

}
.player-unanswered {
  color:#888888;
}

#player-controls {
  display:flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:10px;
}


.pscore {
  padding-left:10px;
  font-family: 'Visitor' !important;
  font-size:1.3em;
  color:#1af7ff;
}

.pscore-alt {
  padding-left:10px;
  font-family: 'Visitor' !important;
  font-size:1.3em;
  color:#FFFFFF;
}

.shake {
  animation: shake 300ms;
}

@keyframes shake {
  25% {
      transform: translateX(4px)
  }

  50% {
      transform: translateX(-4px)
  }

  75% {
      transform: translateX(4px)
  }
}

.collapse-margins:empty {
  margin:0!important;
  padding:0!important;
  border:none!important;
}

.hide-disabled {
  transition: opacity 0.25s ease-in-out;
}

.hide-disabled:disabled {
  background-color: initial!important;
  opacity:0;
}

#game-progress {
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  gap:10px;
  align-items: center;
  width:100%;

}

.fs-overlay {
  background-color:#150639;
  position: fixed;  /* Stays fixed on the viewport */
  top: 0;
  left: 0;
  width: 100vw;  /* Full width */
  height: 100dvh; /* Full height */
  z-index: 9999;  /* Ensures it’s on top */
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fffd34; /* Text color */
  font-size: 24px;
}

#time-left {

}

#teams-to-answer-outer {
  width:100%;
  display:flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap:20px;

}


#teams-to-answer-inner {
  width:100%;
  display:flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  flex-wrap: wrap;
  gap:25px;
  color: #fffd34; /* Text color */

}

#teams-to-answer-inner span {
  font-size:2vw;
  
}

#intermission {
 justify-content: space-evenly;
  gap:20px;
}

#teams-to-answer-inner span:nth-child(2n) {
  color: #fff; /* Text color */
}

#popout-main {
  height:100vh;
  width:100vw;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  
}

#time-left {
  height:3vw;
  display: flex;
  align-items: center;
  justify-content: center;

}

#time-left h3 {
  font-family: 'Edit Undo Line BRK';
  color: #1af7ff;
  text-shadow: 0 0 10px #1af7ff;
}

#guess-info {
  font-style:italic;
  font-size:1.3em;
}