.audio-player {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.audio-player button {
  width: 40px;
  height: 40px;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  background-color: #ff6699;
  color: white;
  cursor: pointer;
}

.audio-player button:hover {
  background-color: #ff3366;
}