.playerdiv {
  width: 100%;
  text-align: center;
}
.playerbtn {
    display: inline-block;
    background-color: #36011f;
    color: white;
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.playerbtn:hover {
 
 }

.custom-audio-controls {
  display: flex;
  align-items: center;
  gap:10px;
  padding: 10px;
  justify-content: center;
}

.progress-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 70%;
}

#progressBar {
  width: 100%;
  height: 6px;
  cursor: pointer;
  appearance: none;
  background:#36011f;
  border-radius: 5px;
}

#progressBar::-webkit-slider-thumb {
  appearance: none;
  width: 15px;
  height: 15px;
  background:#36011f;
  border-radius: 50%;
  cursor: pointer;
}

#progressBar::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background:#36011f;
  border-radius: 50%;
  cursor: pointer;
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

#volumeSlider {
  width:100%;
  cursor: pointer;
  appearance: none;
  background:#36011f;
  height: 6px;
  border-radius: 5px;
}

#volumeSlider::-webkit-slider-thumb {
  appearance: none;
  width: 15px;
  height: 15px;
  background:#36011f;
  border-radius: 50%;
  cursor: pointer;
}

#volumeSlider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background:#36011f;
  border-radius: 50%;
  cursor: pointer;
}

.volume-container:hover #volumeSlider {
  background: #333;
}

@media (max-width: 768px) {
  .playerbtn {
    width:10%;
    padding:3px 8px;
  }

  .progress-container {
    width: 60%;
  }

  #volumeSlider {
    width: 60%;
  }

}