@font-face {
    font-family: "Lexend";
    src: url(../media/fonts/Lexend-VariableFont_wght.ttf) format('woff');
    font-weitght:normal;
    font-style:normal;
}
body {
    margin: 0;
}
.seccion-tabla-artistas {
    background-color: #000; /* Fondo negro */
    color: #fff;
    padding: 60px 20px;
    font-family:Lexend;
}
.seccion-tabla-artistas h2{
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}
.contenedorTabla {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}
.tablaArtistas {
    width: 100%;
    border-collapse: collapse; /*quita el estilo por defecto de las tablas*/
    min-width: 600px;
}
.tablaArtistas thead tr {
    border-bottom: 1px solid #333;
    text-align: left;
}

.tablaArtistas th {
    padding: 20px;
    color: #9EF07A;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tablaArtistas tbody tr {
    border-bottom: 1px solid #3f3a3a; /*linea entre cada artista*/
    transition: background-color 0.3s;
}
.tablaArtistas tbody tr:hover {
    background-color: #1a1a1a;
}
.tablaArtistas td {
    padding: 15px 20px;
    vertical-align: middle; 
}
.numero {
    font-weight: bold;
    color: #888; /* Número gris para no distraer */
    width: 50px;
}

.nombre-artista {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
.dato-secundario {
    color: #b3b3b3;
    font-size: 14px;
}
img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}