.song-item {
    cursor: pointer;
    transition: background-color 0.15s;
}

.song-item.active {
    border-left: 4px solid var(--bs-primary);
    background-color: var(--bs-primary-bg-subtle);
}

#shuffleButton.active,
#repeatButton.active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

.player-icons {
    width: 36px;
    height: 36px;
}

.pb-6 {
    padding-bottom: 4.5rem !important;
}

.equalizer-panel {
    background: #212529;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 8px;
}

.equalizer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.equalizer-bands {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    height: 170px;
    gap: 8px;
}

.equalizer-band {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-width: 35px;
}

.equalizer-band label {
    font-size: 11px;
    color: #adb5bd;
    white-space: nowrap;
}

.equalizer-value {
    font-size: 10px;
    color: #adb5bd;
    min-height: 15px;
}


/*
 * Vertical range slider
 */
.equalizer-band input[type="range"] {
    width: 150px;
    height: 25px;
    transform: rotate(-90deg);
    margin: 50px -60px;
    accent-color: #0d6efd;
}


/*
 * Mobile
 */
@media (max-width: 576px) {

    .equalizer-bands {
        height: 145px;
        gap: 2px;
    }

    .equalizer-band {
        min-width: 25px;
    }

    .equalizer-band input[type="range"] {
        width: 120px;
        margin: 40px -48px;
    }

    .equalizer-band label {
        font-size: 9px;
    }

}