/* Main Container */
.cmatchTable20 {
  min-width: calc(100% - 4px);
  max-width: calc(100% - 4px);
  margin-left: 2px;
  margin-right: 2px;
  flex: 1;
  color: var(--color-text-main);
  margin-top: 4px;
  font-family: "Lato", Avenir, Verdana, Nunito, sans-serif;
  font-weight: bold;
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.tableContent {
  display: flex;
  flex-direction: column;
}

.scoreBoxContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Score Box - Main container */
.scoreBox {
  position: relative;
  height: 70px;
  margin-bottom: 40px;
  padding: 0 !important;
  border-radius: 0 !important;
  width: 100%;
}

.btnTheme {
  color: #fff;
  background-image: linear-gradient(to right, #0f2327, #1f5058);
  width: 100%;
  border-radius: 4px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px 2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border: 0;
  padding: 8px 10px;
  font-size: 20px;
  cursor: pointer;
}

/* Ball Image */
.ballImage {
  width: 50px;
  position: absolute;
  /* z-index: 12; */
  top: 40px;
  left: 10px;
}

.imgFluid {
  max-width: 100%;
  height: auto;
}

/* Score Bat Icon */
.scoreImg {
  width: 70% !important;
}

/* Team Score */
.teamScore {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
  display: flex;
  align-items: center;
  height: 50px;
  left: 20%;
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

.teamScore > div {
  display: flex;
  align-items: center;
  margin: 2px 0;
}

.ml1 {
  margin-left: 4px;
}

/* Min Max */
.minMax {
  position: absolute;
  top: 53px;
  right: 5px;
  font-size: 0.875rem !important;
  font-weight: normal;
}

.minMax span {
  display: inline;
}

/* Back Box */
.backbox {
  position: absolute;
  top: 0;
  left: 70%;
  width: 15%;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 16px;
  color: #000;
  cursor: pointer;
}

.back {
  background-color: #72bbef;
}

/* Lay Box */
.laybox {
  position: absolute;
  top: 0;
  left: 85%;
  width: 15%;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 16px;
  color: #000;
  cursor: pointer;
}

.lay {
  background-color: #faa9ba;
}

.odds {
  display: block;
  font-weight: bold;
}

.dBlock {
  display: block;
}

/* Suspended State */
.suspended {
  position: relative;
  pointer-events: none;
  cursor: not-allowed;
}

.suspended::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 50px;
  top: 0;
  right: 0;
  border-radius: 0;
  background: rgba(217, 220, 223) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}

.suspended::before {
  content: "";
  background-color: #1f5058;
  mask-image: url(../../../assets/img/lock.svg);
  -webkit-mask-image: url(../../../assets/img/lock.svg);
  mask-size: 25px 25px;
  -webkit-mask-size: 25px 25px;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  position: absolute;
  width: 30%;
  height: 50px;
  top: 0;
  right: 0;
  z-index: 11;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .scoreBox {
   height: 70px;
  }

  .teamScore {
    font-size: 10px;
    left: 15%;
    width: 45%;
  }

  .backbox,
  .laybox {
    width: 20%;
    font-size: 14px;
    height: 50px;
  }

  .backbox {
    left: 60%;
  }

  .laybox {
    left: 80%;
  }

  .minMax {
    font-size: 0.75rem !important;
    top: 55px;
    right: 3px;
  }

  .ballImage {
    width: 40px;
    top: 35px;
    left: 5px;
  }
}

@media (max-width: 480px) {
  .scoreBox {
height: 70px;
  }

  .teamScore {
    font-size: 9px;
    left: 20%;
    width: 50%;
    padding: 3px;
  }

  .backbox,
  .laybox {
    width:15%;
    font-size: 12px;
    height: 50px;
  }

  .backbox {
    left: 70%;
  }

  .laybox {
    left: 85%;
  }

  .minMax {
    font-size: 0.7rem !important;
    top: 50px;
  }

  .ballImage {
    width: 50px;
    top: 40px;
    left: 10px;
  }
}
