.casinoContainer {
  width: 100%;
}

.ab2Container {
  width: 100%;
  color: #fff;
  padding: 5px 0;
  background: #ddd !important;
  color: #fff;
  font-size: 14px;
}

.betA {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
  align-items: center;
}

.aTitle {
  width: 5%;
  text-align: center;
  /* padding: 5px 0; */
  /* padding-top: 15px; */
  font-size: 20px;
  color: #000;
}

.betCell {
  position: relative;
  cursor: pointer;
  text-align: center;
  padding: 5px;
}

.sa {
  width: 20%;
  margin-left: 2%;
}

.sa > div:first-child,
.firstBet > div:first-child,
.secondBet > div:first-child {
  text-align: center;
  padding: 5px 0;
  border-radius: 8px;
  background-color: #086cb8;
  color: #fff;
}

/* Only active bet with yellow border */
.sa > div:first-child.activeBorder,
.firstBet > div:first-child.activeBorder,
.secondBet > div:first-child.activeBorder {
  border: 3px solid yellow;
}

/* Active bets without yellow border (still blue background) */
.sa > div:first-child:not(.suspended):not(.activeBorder),
.firstBet > div:first-child:not(.suspended):not(.activeBorder),
.secondBet > div:first-child:not(.suspended):not(.activeBorder) {
  border: none;
}

.sa > div:first-child.suspended,
.firstBet > div:first-child.suspended,
.secondBet > div:first-child.suspended {
  border: none !important;
  background-color: rgba(217, 220, 223) !important;
}

.firstBet,
.secondBet {
  width: 25%;
  margin: 0 2%;
}

.secondBet {
  margin-right: 0;
}

.book {
  font-size: 10px;
  margin-top: 5px;
  text-align: center;
}

.mt1 {
  margin-top: 5px;
  text-align: center;
}

.ab2Box {
  background: #ddd !important;
  padding: 5px;
  color: #000;
}

.bltitle {
  font-size: 20px;
  height: 35px;
  line-height: 35px;
  text-transform: uppercase;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bltitle img {
  width: 30px;
  height: 30px;
}

.row5 {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.col3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 5px;
}

.col6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 5px;
}

.col12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 5px;
}

.textCenter {
  text-align: center;
}

.back {
  background-color: #72bbef;
  padding: 5px;
  border-radius: 3px;
}

.blbox {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.odd {
  font-size: 14px;
  font-weight: bold;
}

.mt2 {
  margin-top: 10px;
}

.mt5 {
  margin-top: 5px;
}

.cardImage {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  position: relative;
}

.cardImage img {
  width: 40px;
  height: 50px;
  object-fit: cover;
}

.ubook {
  font-size: 10px;
}

.mr5 {
  margin-right: 5px;
}

/* Suspended styling */
.suspended {
  position: relative !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
  background: rgba(217, 220, 223) !important;
  background-color: rgba(217, 220, 223) !important;
  /* opacity: 0.6; */
  border: none !important;
}

.suspended::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(217, 220, 223) !important;
  z-index: 1;
  pointer-events: none;
}

.suspended::before {
  content: "";
  background-color: #1f5058;
  mask-image: url(../../../assets/img/lock.svg);
  -webkit-mask-image: url(../../../assets/img/lock.svg);
  mask-size: 20px 20px;
  -webkit-mask-size: 20px 20px;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.suspended > div,
.suspended img {
  opacity: 0.3 !important;
}

/* Ensure back class doesn't override when suspended */
.back.suspended {
  background: rgba(217, 220, 223) !important;
  background-image: none !important;
}

/* Remove yellow border when suspended */
.sa > div:first-child.suspended,
.firstBet > div:first-child.suspended,
.secondBet > div:first-child.suspended {
    border: 3px solid yellow !important;
  background-color: rgba(217, 220, 223) !important;
}

/* @media (max-width: 768px) {
  .betA {
    flex-wrap: wrap;
  }

  .aTitle {
    width: 100%;
    text-align: center;
  }

  .sa,
  .firstBet,
  .secondBet {
    width: 30%;
    margin: 5px 1%;
  }

  .col3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .cardImage img {
    width: 40px;
    height: 56px;
  }
} */

