.play-pause-button, .audio-wrapper {
  position: absolute;
  top: 10px;
  left: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1000;
  transition: opacity 0.2s ease;
  width:32px;
  height:32px;
  box-shadow:unset;
}



.play-pause-button:hover {
  opacity: 0.7;
}

/* Play icon (white triangle) */
.play-pause-button .icon.play {
  width: 0;
  height: 0;
  border-left: 14px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  display: inline-block;
}

/* Pause icon (two white bars) */
.play-pause-button .icon.pause {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
}

.play-pause-button .icon.pause::before,
.play-pause-button .icon.pause::after {
  content: '';
  position: absolute;
  top: 0;
  width: 4px;
  height: 14px;
  background: white;
}

.play-pause-button .icon.pause::before {
  left: 0;
}

.play-pause-button .icon.pause::after {
  right: 0;
}


/* Volume slider */
#volumeControl {
  -webkit-appearance: none;
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
  position: absolute;
  top:24px;
  left:50px;

}

#volumeControl:hover {
  background: rgba(255, 255, 255, 0.6);
}

#volumeControl::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  transition: transform 0.1s;
}

#volumeControl::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

#volumeControl::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}