.scoreCard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: linear-gradient(90deg, #173a3f, #0e2a2e); */
  background-image: url('../../assets/sports/scorecard-bg.png');
  /* padding: 5px 0; */
  /* border-radius: 6px; */
  color: #fff;
  width: 100%;
  max-width: 500px;
}

.scoreCardContainer{
     display: flex;
  justify-content: space-between;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.45);
    padding: 5px 0;
}

.score_crr {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2px;
  background: linear-gradient(90deg, #173a3f, #0e2a2e);
  padding: 4px 8px;
  width: 215px;
  font-size: 11px;
  color: #fff;


}
.scores{
    display: flex;
    align-items: center;
}
.ballIcon{
    width: 17px;
    height: 17  px;
    margin-right: 8px;
    margin-left: 8px;
    filter: invert(1);
}
.baticon{
   
    filter: invert(1);
}

/* LEFT SIDE */
.left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.teamRow {
  display: flex;
  gap: 6px;
  font-size: 13px;
}
.teamRow1 {
  display: flex;
  /* gap: 2px; */
  font-size: 13px;
    padding: 0px 8px;
    align-items: start;
    flex-direction: column;
  }

.team {
  font-weight: 600;
  font-size: 11px;
}

.score {
  /* opacity: 0.9; */
  font-size: 10px;

}

.crr {
  font-size: 10px;
  /* opacity: 0.8; */
}

/* RIGHT SIDE */
.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0px 25px 0px 0px;
}

.balls {
  display: flex;
  gap: 4px;
}

.ball {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  /* background: #2ecc71; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
}

.result {
  font-size: 12px;
  /* color: #9aff9a; */
}

.ball {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  background: #0088CC; /* default */
}

/* 4 & 6 */
.boundary {
  background: #087F23; /* green */
}

/* Dot ball */
.dot {
  background: #0088CC; /* blue */
}

/* Wicket */
.wicket {
  background: #e74c3c; /* red */
}

.six{
    background: #883997; /* purple */
}