.custom-audio-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: sans-serif;
  max-width: 500px;
  margin: 1rem 0;
}

.custom-audio-player button {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.custom-audio-player .progress-container {
  flex: 1;
  height: 5px;
  background: #ccc;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.custom-audio-player .progress {
  height: 100%;
  background: #333;
  width: 0%;
  border-radius: 2px;
}

.custom-audio-player .time {
  font-size: 0.9rem;
  white-space: nowrap;
}
