/*
 * mbp-music.css -- the native HTML5 music player (public/js/mbp-music.js).
 * Kept small and neutral so it sits inside the legacy .border2 blocks on the
 * album, song and profile pages without fighting the surrounding table layout.
 */
.mbp-player {
    margin: 6px 0 10px;
}
.mbp-player-inner {
    max-width: 100%;
}
.mbp-player .mbp-audio {
    width: 100%;
    max-width: 460px;
    display: block;
    margin: 4px 0;
}
.mbp-player .mbp-now {
    font-size: 9pt;
    font-weight: bold;
    padding: 2px 0 4px;
    word-break: break-word;
}
.mbp-player .mbp-tracklist {
    list-style: decimal inside;
    margin: 6px 0 0;
    padding: 0;
    font-size: 9pt;
    max-height: 220px;
    overflow-y: auto;
}
.mbp-player .mbp-tracklist li {
    padding: 2px 4px;
}
.mbp-player .mbp-tracklist li a {
    text-decoration: none;
}
.mbp-player .mbp-tracklist li a:hover {
    text-decoration: underline;
}
.mbp-player .mbp-tracklist li.mbp-current {
    font-weight: bold;
}
.mbp-player .mbp-tracklist li.mbp-current a {
    text-decoration: underline;
}
/* Profile music: compact, since it sits in the profile sidebar. */
.mbp-player.mbp-profile .mbp-audio {
    max-width: 260px;
}
