.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;
  .playerName{
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    
  }
  
div{
  display: flex;
  gap: 5px;
}

  @media (max-width: 768px) {
    position: absolute;
    .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;
  }
}
.bettable{
  width: 49%;
  @media (max-width: 768px) {
    width: 100%;
  }
}
.row1 {
  width: 100%;
  display: flex;
  justify-content: space-between; /* Distribute space between children */
  align-items: center; /* Align children vertically */
  font-weight: 500;
}

.row1 .cellContainer {
  display: flex;
  justify-content: flex-end; /* Align to the end (right side) */
  width: 50%; /* Keep the width as per your design */
  flex: 1; /* Take up remaining space */
  gap: 1rem;
  @media (max-width: 768px) {
    width: 100%; /* Full width on smaller screens */
    justify-content: space-between; /* Adjust for smaller screens if needed */
  }
}

.row3 {
  text-align: start;
  background-color: #f7f7f7;
  height: 46px;
  border: 1px solid #d7d7d7;
  width: 23.5%;
  display: flex;
  padding-left: 0.5rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  
  @media (max-width: 768px) {
    width: 49%; /* Full width on smaller screens */
    justify-content: space-between; /* Adjust for smaller screens if needed */
  }
}

.row3 .col1 {
  background-color: #72bbef;
  width: 4rem;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  height: inherit;
}

.row3 .col2 {
  background-color: pink;
  width: 4rem;
  padding: 0.5rem 21px;
  height: inherit;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
}

.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;
}
.playAndWin {
  background-color: #086f3f;
  color: white;
  padding: 5px;
  margin-top: 10px;
  font-size: 15px;
}
.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;
}


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

  .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 */
  }
}

.placeBet {
  /* Default styles for PC view */
  position: static; /* Default position for PC view */
  z-index: auto; /* No z-index for PC view */
  width: 33.3%;
  margin-left: 0.1rem;
}

.locked {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333; /* Black background */
  width: 100%;
  height: 100%;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}

.lockIcon {
  font-size: 1.5rem;
  color: white;
}

.myBetContainer {
  width: 100%;
}