
.CricketDetails{
    width: 80%;
@media  (max-width: 600px){
    width: 100%;
}
}

.Container{
    display: flex;
    @media (max-width:600px) {
        flex-direction: column;
    }
}
.Tv{
    background-color: #000;
    height: 32.5vh;
    margin: 0px 12px 4px 3px;
    overflow: hidden;
    width: 100%;
    
    
    @media  (max-width: 600px){
       display: block;
       width: 100%;
       height: 30vh;
       margin: 0;
       
    }
}

.placeBet {
    /* Default styles for PC view */
    position: static; /* Default position for PC view */
    width: 25rem;
    z-index: auto; /* No z-index for PC view */
  }
  @media (max-width:600px) {

    .placeBet {
        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%;
        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 */
      }
    
  }