.playlist-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #ddd;
    margin-bottom: 1.5rem;
}

.playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.playlist-name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.playlist-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.playlist-stats {
    display: flex;
    gap: 1rem;
    color: #888;
    font-size: 0.85rem;
}

.playlist-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.playlist-actions {
    display: flex;
    gap: 0.5rem;
}

.playlist-actions button {
    padding: 0.25rem 0.5rem;
}

.playlist-option {
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
}

.playlist-option:last-child {
    border-bottom: none;
}

.add-to-playlist-option {
    width: 100%;
    text-align: left;
    padding: 0.5rem;
    color: #333;
    text-decoration: none;
}

.add-to-playlist-option:hover {
    background-color: #f8f9fa;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .playlist-card {
        padding: 1rem;
    }
    
    .playlist-name {
        font-size: 1.1rem;
    }
    
    .playlist-actions button {
        padding: 0.2rem 0.4rem;
    }
}