

  
  
  .track {
    margin-bottom: 1.5rem;
  }
  
  .track:last-child {
    margin-bottom: 0;
  }
  .track-title {
    margin-left:20px;
  }
  
  .custom-audio-player {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.3);
  }
  
  .custom-audio-player::-webkit-media-controls-panel {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
  }
  
  .custom-audio-player::-webkit-media-controls-play-button {
    background-color: white;
    border-radius: 50%;
    transform: scale(1.2);
  }
  
  .custom-audio-player::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    height: 4px;
  }
  
  .custom-audio-player::-webkit-media-controls-current-time-display,
  .custom-audio-player::-webkit-media-controls-time-remaining-display {
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  }
  
  .custom-audio-player::-webkit-media-controls-volume-slider {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
  }