/* =========================
   CONTENEDOR GENERAL
========================= */
.tabla-container {
    width: 80%;
    max-width: 1000px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

/* =========================
   HEADER + ROW (DESKTOP)
========================= */
.tabla-header,
.tabla-row {
    display: grid;

    /* 
    1 = posición (igual)
    2 = nombre (ancha)
    3 = igual que nombre
    4 = un poco más ancha que posición
    5 = imagen fija
    */
    grid-template-columns:
        60px
        120px
        2fr
        70px
        2fr
        70px;
        
        

    align-items: center;
    gap: 10px;
    padding: 12px;
}

/* HEADER */
.tabla-header {
    background: #1e1e2f;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    text-align: center;
}

/* FILAS */
.tabla-row {
    background: #f5f5f5;
    margin-top: 8px;
    border-radius: 10px;
    text-align: center;
}

/* COLUMNAS DE TEXTO */
.equipo,
.columna-texto {
    text-align: center;
    font-weight: 100;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nombre, 
.columna-texto {
    text-align: left;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #0861E9;
}
.goles, 
.columna-texto {
    text-align: center;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #E4092B;
    font-size: 2em;
}
/* POSICIÓN */
.posicion {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #1e1e2f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

/* IMAGEN */
.roundedimg {
    max-height: 85px;
    object-fit: cover;
    border-radius: 50%;
    padding: 4px;
    background-color: #FFF;
    border: 1px solid #B9CEDF;
    display: block;
    margin: auto;
}
.roundedimgch {
    max-height: 45px;
    object-fit: cover;
    border-radius: 50%;
    padding: 4px;
    background-color: #FFF;
    border: 1px solid #B9CEDF;
    display: block;
    margin: auto;
}

/* =========================
   ?? MOBILE (CARD VIEW)
========================= */
@media (max-width: 768px) {

    .tabla-header {
        display: none;
    }

    .tabla-row {
        display: block;
        text-align: left;
        padding: 15px;
    }

    .tabla-row div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        border-bottom: 1px solid #eee;
    }

    .tabla-row div:last-child {
        border-bottom: none;
    }

    .equipo,
    .columna-texto {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .posicion {
        margin: 0 0 10px 0;
    }

    .roundedimg {
        width: 50px;
        height: 50px;
    }

    /* etiquetas en mobile */
    .tabla-row div::before {
        content: attr(data-label);
        font-weight: bold;
        color: #555;
        margin-right: 10px;
    }
}