.game-columns {
    display: flex;
    gap: 0px;
    justify-content: center;
    align-items: center;
}

.game-column {
    background-color: white;
    padding: 0px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

#game-left-column, #game-right-column {
    flex: 0 0 15%; /* Fixed width of 20% */
    display: flex; /* Enable Flexbox */
   flex-direction: column; /* Stack children vertically */
   justify-content: center; /* Center vertically */
   align-items: center; /* Center horizontally */
}

#game-middle-column {
    flex: 1; /* Take the remaining space */
}



#progressBar {
    width: 80%;
    height: 22px;
    border: 1px solid #111;
    background-color: #292929;
    margin: 0 auto;
    border-radius: 6px;
}

#progressBar div {
    height: 100%;
    color: #fff;
    text-align: center;
    justify-content: center;
    line-height: 22px; /* same as #progressBar height if we want text middle aligned */
    width: 0;
    background-color: #65757e;
}

/* General style for score bar containers */
.scoreBarContainer {
    height: 280px;
    width: 40px;
    background-color: white;
    border: 2px solid #4CAF50; /* Example border color, adjust as needed */
    border-radius: 6px; /* Rounded corners for the container */
    overflow: hidden; /* Ensures fill bar stays within the rounded corners */
    display: flex;
    flex-direction: column-reverse;
    margin: 0 auto;
}

/* Styles for the fill bars */
.scoreBarFill {
    width: 100%;
    background-color: #4CAF50; /* Example fill color, adjust as needed */
    border-radius: 0; /* Rounded corners for the fill bar */
    transition: height 0.3s ease; /* Optional: smooth transition for the fill */
}

/* Specific styles for each team */
/*
#teamOneScoreBarContainer {
    border-color: #cacaca;
}

#teamTwoScoreBarContainer {
    border-color: #067d26;
}


#teamOneScoreBarFill {
    background-color: #e5e5e5;
}

#teamTwoScoreBarFill {
    background-color: #53a068;
}
*/


.team-name {
    text-align: center; /* Center the text */
    margin-top: 10px; /* Add some space between the image and the name */
    font-size: 18px; /* Adjust the font size as needed */
    font-weight: bold; /* Optional: if you want the name to be bold */
    padding-bottom: 10px; /* Padding at the bottom */
}


.math-container {
    display: flex;
    flex-direction: column; /* Align children in a column */
    width: 100%;
    margin: auto;
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically if needed */
}

.equation-container {
    display: flex;
    flex-wrap: nowrap;
    width: 75%;
}

/* Media query for screens with a maximum width of 768px  */
@media (max-width: 768px) {
    .equation-container {
        width: 100%; /* Change width to 100% for mobile devices */
    }
  }

.math-cell {
    flex: 1 1 18%; /* Adjust based on your layout */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 62px;
    font-weight: normal;
    padding: 0px; /* Adds space inside each cell */
    margin: 0px; /* Adds space outside each cell */
  }


  @media (max-width: 768px) {
    .math-cell {
        font-size: 55px;
    }
  }

  input.math-input {
      font-weight: bold;
      font-size: 62px !important;
      padding: 5px;
      text-align: center;
  }


  @media (max-width: 768px) {
    input.math-input {
        font-size: 55px !important;
    }
}

  .answer-button-container {
      display: flex;
      justify-content: center; /* Horizontally centers the child elements */
      align-items: center; /* Vertically centers the child elements (if needed) */
      padding-top: 30px; /* Padding at the top */
  }


.answer-button {
    display: inline-block;
    padding: 0px 0px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    height: 55px;
    width: 190px;
    line-height: 20px; /* Same as the height for vertical centering */
    color: white; /* Text color */
    background-color:green;
    font-size: 20px;

}
