.player-control {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    height: 55px;
    border-radius: 20px;
    padding: 0 10px;
}

.play-pause {
    background-color: transparent;
    background-image: url('//animetracks.com/wp-content/themes/anime/images/icon-play.png');
    background-repeat: no-repeat;
    background-position: center;
    width: 58px;
    height: 55px;
    border: none;
    outline: none;
    cursor: pointer;
}

.play-pause.play {
    background-image: url('//animetracks.com/wp-content/themes/anime/images/icon-pause.png');
}

.dark-mode.play-pause {
    background-image: url('//animetracks.com/wp-content/themes/anime/images/icon-play-white.png');
}

.dark-mode.play-pause.play {
    background-image: url('//animetracks.com/wp-content/themes/anime/images/icon-pause-white.png');
}

.volume-slider {
    display: flex;
    align-items: center;
    height: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background-color: #F36533;
    border-radius: 5px;
    outline: none;
    margin: 0 10px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background-color: #E6460D;
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 768px) {
    .play-pause {
        width: 30px;
        height: 55px;
        margin-top: 8px;
    }
}