/* Custom track title and download button */
.mp3-audio-title {
    font-weight: bold;
    margin-bottom: 6px;
}
.mp3-audio-download {
    margin-left: 8px;
    font-size: 1.1em;
    text-decoration: none;
    color: #0073aa;
    vertical-align: middle;
}
.mp3-audio-download:hover {
    color: #005177;
}
/* Basic styling for the MP3 Audio Player */
.mp3-audio-player {
    width: 100%;
    max-width: 400px;
    margin: 10px 0;
}
.mp3-audio-player-wrap {
    max-width: 420px;
    margin-bottom: 20px;
}
.mp3-audio-playlist {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    gap: 10px;
}
.mp3-audio-playlist li {
    background: #f2f2f2;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}
.mp3-audio-playlist li.active, .mp3-audio-playlist li:hover {
    background: #0073aa;
    color: #fff;
}
