.custom-audio-player {
  display: flex;
  align-items: center;
  background-color: #00000099;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.play-pause,
.volume-button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  padding: 0 10px;
}

.progress-container {
  flex-grow: 1;
  margin: 0 10px;
}

.seek-slider {
  width: 100%;
  cursor: pointer;
  background-color: #555;
  height: 5px;
  border-radius: 5px;
  -webkit-appearance: none;
  appearance: none;
}

.seek-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.seek-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.current-time,
.duration {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  margin: 0 5px;
}

.volume-slider {
  width: 100px;
  cursor: pointer;
  background-color: #555;
  height: 5px;
  border-radius: 5px;
  -webkit-appearance: none;
  appearance: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}