.mcp-artist-directory {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 5px;
    font-family: sans-serif;
}

.mcp-artist-directory h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 30px;
    color: #333;
}

.mcp-artist-header {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

#mcp-artist-search{
    padding: 12px 40px 12px 15px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background: #f5f5f5;
    background-size: 16px;
}
#mcp-artist-filter {
    padding: 12px 40px 12px 15px; /* TOP RIGHT BOTTOM LEFT */
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background: #f5f5f5;
   appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    width:11%;
}

#mcp-artist-search {
    flex: 1;
}

/* GRILLA DE 3 COLUMNAS */
#mcp-artist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mcp-artist-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #fff;
    /*
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
    */
}


.mcp-artist-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}



.mcp-artist-number {
    font-weight: bold;
    font-size: 20px;
    color: #999;
    width: 20px;
    text-align: right;
    margin-right: 10px;
}

.mcp-artist-thumb {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ff6600;
    margin-right: 10px;
}

.mcp-artist-name {
    color: #ff6600;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mcp-artist-name:hover {
    text-decoration: none;
    color:#757575
}


#mcp-artist-load-more {
    padding: 12px 24px;
    /*background-color: #ff6600;*/
    color: #e65c00;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

#mcp-artist-load-more:hover {
    background-color: #e65c00;
    color:white
}

#mcp-artist-load-more:active {
    transform: scale(0.98);
}

#mcp-artist-load-more:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}


/* RESPONSIVE ADAPTACIÓN */
@media (max-width: 768px) {
    #mcp-artist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap:5px;
    }
}

@media (max-width: 480px) {
    #mcp-artist-grid {
        grid-template-columns: 1fr;
    }

    .mcp-artist-header {
        display: flexbox;
    }

    #mcp-artist-search{
        width:65%;
    }
    #mcp-artist-filter {
        padding: 12px 12px 12px 9px; /* TOP RIGHT BOTTOM LEFT */
  
   appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    width:25%;
        
    }
}

