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

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

.sectionA {
  width: 67.2%;
}

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

.tableWrapper {
  width: 49%;
}

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

.viewAll {
  cursor: pointer;
}

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

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

.placeBet {
  width:  32.8%;
  display: flex;
  flex-direction: column;
  padding-left: 0.1rem;
}

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

.myBetContainer {
  width: 100%;
  /* display: block !important; */
}

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

  .tableContainer {
    flex-direction: column;
  }

  .tableWrapper {
    width: 100%;
  }

  /* .placeBet {
    display: none;
  } */

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