/* === Tarjeta general para bloques tipo "Mis listas personalizadas" === */
a {
    text-decoration: none;
    color:var(--orange);
}
a:hover{
    color:#000;
}
.mcp-contribuciones a{
    color: black;
}
.mcp-user-info a{
    text-decoration: none;
    color:#000000a8;
}
.mcp-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Estilo específico para la tarjeta de listas personalizadas */
.mcp-user-lists-card h2 {
    margin-top: 0;
    font-size: 1.4rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Ajustes para la lista */
.mcp-user-lists-card ul.mcp-listas {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.mcp-user-name{
    margin-bottom: 5px;
}

.mcp-user-lists-card ul.mcp-listas li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
}

/* Input y botón */
.mcp-user-lists-card .mcp-new-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.mcp-user-lists-card .mcp-new-list input[type="text"] {
    flex: 1;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.mcp-user-lists-card .mcp-new-list button {
    padding: 0.5rem 1rem;
    background-color: #f60;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mcp-user-lists-card .mcp-new-list button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Imagen cuando no hay listas */
.mcp-no-lists {
    text-align: center;
    margin: 2rem 0;
}

.mcp-no-lists-img {
    max-width: 280px;
    height: auto;
    margin-bottom: 1rem;
}

.mcp-no-lists-msg {
    color: #f60;
    font-size: 1.2rem;
    font-weight: bold;
}


.mcp-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
   /* flex-wrap: wrap;*/
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.mcp-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 300px;
}

.mcp-user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    object-fit: cover;
}

.mcp-edit-profile {
    font-size: 0.9rem;
    color: #777;
    text-decoration: underline;
    display: inline-block;
    margin-top: 0.25rem;
}

.mcp-friends {
    text-align: center;
    min-width: 80px;
    font-size: 0.85rem;
    color: #444;
}

.mcp-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.mcp-col h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.mcp-listas {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.mcp-listas li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.mcp-listas .icon {
    margin-right: 0.5rem;
}

.mcp-add-song a {
    display: inline-block;
    margin-top: 0.5rem;
    text-decoration: underline;
    font-weight: bold;
    color: #000;
}

.mcp-new-list {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.mcp-new-list input {
    flex: 1 1 auto;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-width: 200px;
}

.mcp-new-list button {
    padding: 0.5rem 1rem;
    background: #f60;
    border: none;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.mcp-contribuciones {
    margin-top: 2rem;
}

.mcp-user-contributions {
    padding-left: 1rem;
    list-style: none;
    font-size: 0.95rem;
}

.mcp-empty-contributions {
    text-align: center;
    opacity: 0.6;
    font-size: 0.95rem;
}

.mcp-empty-contributions img {
    max-width: 140px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .mcp-profile-grid {
        grid-template-columns: 1fr;
    }

    .mcp-user-info {
        /*flex-direction: column;*/
        align-items: center;
    }

    .mcp-user-avatar {
        width: 70px;
        height: 70px;
    }

    .mcp-friends {
        align-self: flex-end;
    }

    .mcp-new-list {
        flex-direction: column;
    }

    .mcp-new-list input
     {
        width: 95%;
    }
    .mcp-new-list button {
        width: 100%;
    }

    .mcp-new-list button {
        margin-top: 0.5rem;
    }
}



.mcp-contributions-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.mcp-contributions-list li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mcp-contributions-list li small {
    color: #888;
    font-size: 14px;
}


/* Bloque de favoritos */
.mcp-fav-block {
    padding: 1rem;
    background-color: #f9f9f9;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Encabezado del bloque */
.mcp-fav-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #333;
}

.mcp-fav-header .icon {
    color: #D32F2F;
    font-size: 1.2rem;
}

.mcp-fav-count {
    margin-left: auto;
    color: #888;
    font-size: 0.9rem;
}

/* Lista de canciones favoritas */
.mcp-fav-songs {
    margin-top: 0.8rem;
    padding-left: 1.2rem;
    list-style: none;
}

.mcp-fav-songs li {
    margin: 0.3rem 0;
}

.mcp-fav-songs a {
    color: #0073aa;
    font-size: 14px;
    text-decoration: none;
}

.mcp-fav-songs a:hover {
    text-decoration: underline;
    color: #005177;
}

/* Mensaje cuando no hay favoritas */
.mcp-fav-empty {
    margin-top: 0.8rem;
    font-size: 14px;
    color: #777;
}
.mcp-fav-block {
    list-style-type: none;
  
}
