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

.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: 6rem; */
}

.placeBet {
  width: 32.8%;
  padding-left: 0.1rem;
  position: static;
  z-index: auto;
}

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

  .tableContainer {
    flex-direction: column;
  }

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

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

  .myBetContainer {
    width: 100%;
    margin-left: 0;
    display: none;
  }
}

