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

.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;
}

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

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

@media (max-width: 768px) {
  .playerInfo {
    position: absolute;
  }
  .playerInfo .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;
  }
}

.heading {
  display: flex;
  padding: 0.6rem 0.5rem;
  justify-content: space-between;
  background-color: #163439;
  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;
  position: static;
  z-index: auto;
}

.myBetContainer {
  width: 100%;
  margin-left: 0.1rem;
  display: flex;
  flex-direction: column;
}

.myBetMobileContainer {
  width: 100%;
  display: none;
}

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

  .tableContainer {
    flex-direction: column;
  }

  .placeBet {
    display: none;
  }

  .placeBet.visible {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .myBetMobileContainer {
    display: block;
  }
}
