.container {
  display: flex;
  font-weight: bold;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

.sectionA {
  width: 67.2%;

  @media (max-width: 768px) {
    width: 100%;
  }
}

.videoBox {
  background-color: black;
  width: 100%;
  height: 22.7rem;
  display: flex;

  @media (max-width: 768px) {
    width: 100%;
    height: 49%;
  }
}

.playerInfo {
  z-index: 10;
  width: 26%;
  height: auto;
  margin: 0.3rem;
  font-weight: 500;

  .playerName {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;

  }

  div {
    display: flex;
    gap: 5px;
  }

  @media (max-width: 768px) {
    position: absolute;

    .playerName {
      font-size: 12px;
      height: 8px;
    }
  }
}

.playerCards {
  display: flex;
  gap: 5px;
  width: 3rem;
  height: 3rem;

  @media (max-width: 768px) {
    width: 21px;
    height: 21px;
  }
}

.videoframe {
  position: relative;
  top: 0rem;
  left: 0rem;
  width: 79.5%;
  height: 100%;

}

.tableContainer {
  margin-top: 0.4rem;
  display: flex;
  justify-content: space-between;
  width: 100%;

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.bettable {
  width: 49%;

  @media (max-width: 768px) {
    width: 100%;
  }
}

.row1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* Distribute space between children */
  align-items: center;
  /* Align children vertically */
  font-weight: 500;
}

.row1 .cellContainer {
  display: flex;
  justify-content: flex-end;
  /* Align to the end (right side) */
  width: 50%;
  /* Keep the width as per your design */
  flex: 1;
  /* Take up remaining space */
  gap: 1rem;

  @media (max-width: 768px) {
    width: 100%;
    /* Full width on smaller screens */
    justify-content: space-between;
    /* Adjust for smaller screens if needed */
  }
}

.row3 {
  text-align: start;
  background-color: #f7f7f7;
  height: 46px;
  border: 1px solid #d7d7d7;
  width: 23.5%;
  display: flex;
  padding-left: 0.5rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;

  @media (max-width: 768px) {
    width: 49%;
    /* Full width on smaller screens */
    justify-content: space-between;
    /* Adjust for smaller screens if needed */
  }
}

.row3 .col1 {
  background-color: #72bbef;
  width: 4rem;
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  height: inherit;
}

.row3 .col2 {
  background-color: pink;
  width: 4rem;
  padding: 0.5rem 21px;
  height: inherit;
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
}

.heading {
  display: flex;
  padding: 0.6rem 0.5rem;
  justify-content: space-between;
  background-color: #2c3e50d9;
  color: #ffffff;
  font-weight: 550;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  margin-top: 0.5rem;
}

.Result {
  display: flex;
  justify-content: flex-end;
  padding: 0.4rem 0;
  margin-top: 0.5rem;
}

.Result div {
  background: #355e3b;
  color: #ffff33;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  margin-left: 5px;
  cursor: pointer;
}

.placeBet {
  width: 32.8%;
  padding-left: 0.1rem;
}

@media (max-width: 768px) {
  .placeBet {
    display: none;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    padding-left: 0;
    background-color: white;
    /* Ensure modal has background */
  }

  .placeBet.visible {
    display: block;
  }
}

.locked {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333;
  /* Black background */
  width: 100%;
  height: 100%;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}

.lockIcon {
  font-size: 1.5rem;
  color: white;
}