.splide__arrow{
    background:#c71786 !important;
    height:40px !important;
    width:40px !important;
}
.splide { 
    margin-bottom:40px; 
}
.like-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    border: none; 
    background: #2a2f3a;
    cursor: pointer; 
    font-size: 14px; 
    color: #ccc;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-direction: column;
}
.like-btn:hover {
    background: #c71786;
    color: #fff;
}
.like-btn.liked { 
    background: #c71786;
    color: #fff;
}

.splide__track{
    height: 25rem;
}
#playlistSliderAll {
    margin-bottom: 5rem !important;
}
#title-playlist-slider{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
}
#title-playlist-slider a, #title-playlist-slider h2{
    margin:auto 15px;
}

.splide__track img{
    height: 55% !important;
}
.playlist-slider-wrapper .splide__track {
        height: 350px !important;
}

@media only screen and (max-width: 500px) {
    #title-playlist-slider {
        flex-direction: row;
        flex-wrap: wrap; 
        justify-content: space-between;
        align-items: center;
        gap: 10px;                 
        margin: .5rem;
    }

    #title-playlist-slider h2 {
        font-size: 18px;
        margin: 0;
        background-color: unset !important;
        font-weight: bold !important;
    }

    #title-playlist-slider a {
        font-size: 14px;
        align-self: center;
        margin: 0;
    }
    .playlist-slider-wrapper .splide__track {
        height: 250px !important;
    }
    .playlist-slider-wrapper .playlist-cover img {
        height: 100px !important;
    }
    .playlist-slider-wrapper .playlist-footer {
        width: 90% !important; 
    }
}

.splide__pagination{
    bottom:-30px;
}
.splide__pagination li button{
    background:#c71786;
}

.playlist-card {
    background: #1a1f2a;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px;
    text-align: center;
    margin: 0 10px;
    height: 100%;
}

.playlist-cover img {
    width: 100%;
    max-height: 15rem;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    height: 400px;
}

.playlist-card h3 {
    margin: 10px 0 4px;
    font-size: 16px;
}

.playlist-card h3 a {
    color: white;
    text-decoration: none;
}

.playlist-author {
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

.playlist-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 10px;
    position: absolute;
    width: 100%;
    gap: 15px;
}

.playlist-type {
    background: #c71786;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 15px;
}

.like-btn i {
    font-size: 15px;
    transition: transform 0.2s ease;
}

.like-btn.liked i {
    transform: scale(1.2);
}

.like-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}