
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7fafc; /* Light gray background */
  }
  .container {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .choice{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    display: none;
  }

  .choice-btn{
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .afterChoice{
    /* display: none; */
  }

  #battingOrBowling{
    display: flex;
    justify-content: center;
    gap: 500px;
}

.playing{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

  .AIScore{
    /* display: flex; */
    width: 120px;
    height: 70px;
    padding-top: 15px;
    border: 2px solid black;
  }

  .AIScore img{
    width: 50px;
  }

  .yourScore{
    width: 120px;
    height: 70px;
    padding-top: 15px;
    border: 2px solid black;
  }

  .yourScore img{
    width: 50px;
  }

  .yourRunChoice{
    margin-top: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
  }

  .yourRunChoice .btn2{
    border-radius: 50%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    outline: none;
    border: none;
    background-color: transparent;
  }

  .yourRunChoice img{
    width: 50px;
    border-radius: 10%;
    transition: 0.05s;
  }
  
  .yourRunChoice img:hover{
    width: 70px;
    border-radius: 10%;
  }

  #btnStatus{
    margin-top: 50px;
    display: none;
    text-align: center;
  }
  