/**
 * styles-additions.css — El Fulbo
 * Pegá este bloque al FINAL de tu styles.css existente.
 * No modifica nada anterior — solo agrega.
 */

/* ── Skeleton loaders ────────────────────────────────────────────────────── */
.skel-cell {
    height: 14px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.04) 25%,
        rgba(255,255,255,0.08) 50%,
        rgba(255,255,255,0.04) 75%
    );
    background-size: 300% 100%;
    animation: skel-shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes skel-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Animación live pulse ────────────────────────────────────────────────── */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* ── Escudos en tabla de posiciones ─────────────────────────────────────── */
.standings-table .col-team {
    display: flex;
    align-items: center;
}

/* ── Partidos scoreboard ─────────────────────────────────────────────────── */
.match-item:last-child {
    border-bottom: none !important;
}
