/*
 * SmusicX Vice playlist-action colour compatibility fix.
 *
 * Deliberately surgical: slider arrows, dots/indicators, navigation,
 * separators and unrelated Bootstrap primary buttons are untouched.
 * Only actual Vice playlist actions are targeted by the combination of
 * data-addtoplaylyst + btn-primary. This covers both modern-slider
 * "Listen" buttons and release-page "Add all tracks to playlist" buttons.
 */

a[data-addtoplaylyst].btn-primary {
    background-color: var(--smxlc-accent-color, #d6003d) !important;
    border-color: var(--smxlc-accent-color, #d6003d) !important;
    color: #fff !important;
}

a[data-addtoplaylyst].btn-primary:hover,
a[data-addtoplaylyst].btn-primary:focus,
a[data-addtoplaylyst].btn-primary:active,
a[data-addtoplaylyst].btn-primary.active {
    background-color: var(--smxlc-accent-hover, #b80034) !important;
    border-color: var(--smxlc-accent-hover, #b80034) !important;
    color: #fff !important;
}
