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

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

.table {
  width: 49%;
}

.myBetContainer {
  width: 100%;
}


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

.Result {
  display: flex;
  justify-content: flex-end;
  padding: 0.4rem 0;
  margin-top: 0.5rem;
}
.placeBet {
  width:  32.8%;
  /* Default styles for PC view */
  position: static; /* Default position for PC view */
  z-index: auto; /* No z-index for PC view */
  width:  32.8%;
  padding-left: 0.1rem;
}

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




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

  .tableContainer {
    flex-direction: column;
  }

  .table {
    width: 100%;
  }



  .placeBet.visible {
    display: block; /* Show when visible class is added */
    position: fixed; /* Fixed position to appear from the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10; /* Ensure it appears above other elements */
   
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better visibility */
  }
}