/* === TABLA DE POSICIONES ESTILO LIGA === */
.table-liga {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}

.table-liga thead th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  color: #444;
  border-bottom: 2px solid #ddd;
  padding: 8px;
  text-align: center;
}

.table-liga tbody td {
  padding: 10px 8px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.table-liga tbody tr:hover {
  background: #f9f9f9;
}

/* Columna del club con logo */
.table-liga .club {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  justify-content: flex-start;
}

.table-liga .club img {
  width: 24px;
  height: 24px;
  border-radius: 50%; /* estilo ESPN */
  object-fit: contain;
}

/* Scroll horizontal en móvil */
.table-responsive {
  overflow-x: auto;
}
