.playercont {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: none;
  margin: 1.5rem auto;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  width: 75%;
}
.playerimg {
  width: 100%;
  border-radius: 8px;
}
.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;
}