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

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}
  
  .sectionA {
    width: 67.2%;
  }
  
  .tableContainer {
    margin-top: 0.5rem;
    width: 100%;
  }
  
  .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;
  }
  
  .viewAll {
    cursor: pointer;
  }
  
  .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%;
    display: flex;
    flex-direction: column;
    padding-left: 0.1rem;
  }

  .myBetContainer {
    width: 100%;
    /* display: block !important; */
  }
  
  .sectionB {
    padding-left: 0.3rem;
    margin-top: 0.4rem;
    margin-left: auto;
    font-weight: 700;
  }
  
  .section1 {
    display: flex;
    font-weight: 500;
    background-color: #2c3e50;
    color: white;
    justify-content: space-between;
    padding: 0.3rem 0.3rem;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
  }
  
  .section2 {
    display: flex;
    background: #f7f7f7;
    padding: 3px 0.5rem;
    font-weight: bold;
    justify-content: space-between;
    font-size: 14px;
  }
  
  .videoBox {
    background-color: black;
    width: 100%;
    height: 24.7rem;
  }
  
@media (max-width: 768px) {
  .placeBet {
    width: 100%;
    display: none; /* Hide by default in mobile view */
  }

  .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%;
    height: 100vh; /* Full viewport height */
    overflow-y: auto; /* Enable vertical scrolling */
    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 */
  }
}

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

  .tableContainer {
    flex-direction: column;
  }

  .placeBet {
    display: none;
  }

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