.result-row {
    display: flex;
    gap: 6px;
    margin: 10px 0;
    flex-wrap: nowrap;
    justify-content: flex-end; /* Align items to the right */
  }
  
  .result-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #355E3B;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
  }
  
  .result-circle.yes {
    color: yellow;
  }
  
  .result-circle.no {
    color: red;
  }
  
  .result-circle:hover {
    transform: scale(1.1);
  }

.cricket20ballresult {
  position: relative;
  width: auto;
  left: unset;
  top: unset;
  margin: 0;
  display: inline-block;
  animation: none;
}

.goal-result img {
  height: 250px;
}

.goal-result span {
  position: absolute;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  top: unset;
  left: 58%;
  color: #000;
  font-weight: bold;
  bottom: -10px;
  font-size: 15px;
  width: 60%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cricket20ballpopup img {
  width: 150px;
}

.cricket20ballpopup span {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 26px;
}
  