.nasheedheaderonly{
  margin-left: 250px;
  padding:15px 10px 0 10px;
}
.LnselcCls{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.singleNshd{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 21px;
  overflow:hidden; 
}
.singleNshd h4{
  color: white;
  margin-bottom: 5px;
}
.singleNshd p{
  color: gray;
}
.nshdTmb,.plyThumb{
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
}

/* Audio Playing Divvvvvvv */

.playingDiv{
  display: none;
  align-items: center;
  padding: 10px;
  position: fixed;
  bottom: 20px;
  left: 450px;
  width: 60%;
  height: 100px;
  border-radius: 10px;
  padding-left: 20px;
  background-color: rgb(210, 210, 210);
  z-index: 999;

}
.nashdAbout{
  display: flex;
  align-items: center;
}
.closePlydiv{
  padding: 5px;
  border-radius: 5px;
  margin-left: 30px;
}
.closePlydiv:hover{
  cursor: pointer;
  background-color: black;
  color: white;
  border: white;
}
.playingNasheed{
  margin-right: 50px;
  overflow: hidden;
}
.controls{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#seekBar {
  -webkit-appearance: none; /* remove default browser style */
  width: 500px;
  height: 6px;
  border-radius: 3px;
  background: #ddd; /* fallback track color */
  outline: none;
}

/* Track (the bar) */
#seekBar::-webkit-slider-runnable-track {
  height: 6px;
  background: rgb(53, 53, 53);
  border-radius: 3px;
}

/* Thumb (the knob) */
#seekBar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid white;
  background: rgb(128, 128, 128);
  cursor: pointer;
  margin-top: -4px; /* centers thumb vertically */
}
.pupl{
    width: 30px;
    height: 100%;
    mix-blend-mode: multiply;
    border-radius: 50%;
}
.skipNsd{
  width: 30px;
}
.playbtncls{
  border: none;
  background: none;
}
@media (max-width: 800px) {
  .nasheedMaindBdy{
    padding: 10px;
  }
  .nasheedheaderonly{
    margin-left: 0px;
    padding: 0;
  }
  .menuOpt{
    display: flex;
  }
  .search-box {
    margin: 5px 5px 0px 5px;
  }
  
  .playingDiv {
    display: none;          /* ensures it shows up properly */
    flex-direction: column; /* stack contents vertically */
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 15px;
    left: 45px;
    width: 80%;            /* full width on mobile */
    height: auto;
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(210, 210, 210, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    position: fixed;
  }
  .nashdAbout{
    margin-left: 40px;
    margin-bottom: 10px;
  }
  .closePlydiv{
    position: absolute;  /* ✅ change to absolute */
    top: 10px;           /* move down a little from top edge */
    right: 10px;   
    margin-left: 0px;
  }

  /* Make elements inside smaller */
  .playingDiv .plyThumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .playingDiv .plyingNshd,
  .playingDiv .plyingAut {
    font-size: 14px;
    text-align: center;
  }

  /* Seek bar fits screen */
  #seekBar {
    width: 150%;
  }

  /* Control buttons smaller and centered */
  .controls {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
  }

}


