﻿body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-gradient {
    background: linear-gradient(90deg, #ff7eb3, #ff758c);
    border: none;
    color: #fff;
    transition: opacity 0.3s;
}

    .btn-gradient:hover {
        opacity: 0.8;
        color: #fff;
    }

.genre-item {
    color: #ccc;
    margin-bottom: 4px;
    cursor: pointer;
}

    .genre-item:hover {
        color: #fff;
    }

.card img {
    border-radius: 10px;
}

footer {
    background: linear-gradient(to right, #ff758c, #ff7eb3);
    color: #000;
}

/****************************************************************************************/
/**** Styles for playlist grid                                                          */
.playlist-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 15px;
    background: #1b1b1b;
    padding: 15px;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

    .playlist-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.45);
    }

.playlist-img {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.playlist-card:hover .playlist-img {
    transform: scale(1.04);
}

.playlist-title {
    font-weight: 600;
    font-size: 1rem;
}

.playlist-followers {
    color: #00ff7f;
    font-size: 0.9rem;
}

.playlist-owner {
    color: #aaaaaa;
    font-size: 0.8rem;
}

.action-icon {
    cursor: pointer;
    font-size: 1.4rem;
    margin-top: 8px;
    transition: transform 0.2s ease;
}

    .action-icon:hover {
        transform: scale(1.2);
    }


/****************************************************************************************/
