/* ===== ESTILOS MEJORADOS PARA TABLAS DE LÍDERES ===== */
.google-sheet-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 11px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  white-space: nowrap;
  font-weight: bold; 
}

/* Encabezados */
.google-sheet-table thead tr {
  background-color: #0e2440;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Celdas generales */
.google-sheet-table th,
.google-sheet-table td {
  border: 1px solid #d0d7de;
  padding: 5px 3px;
  vertical-align: middle;
}

/* Columnas de texto (jugador/equipo) alineadas a la izquierda */
.google-sheet-table td:first-child,
.google-sheet-table td:nth-child(2) {
  text-align: left;
  white-space: normal;
  word-break: break-word;
}

/* Columnas numéricas (ALE, VB, HC, AVG) */
.google-sheet-table td:nth-child(3),
.google-sheet-table td:nth-child(4),
.google-sheet-table td:nth-child(5),
.google-sheet-table td:nth-child(6) {
  text-align: center;
  font-family: 'Courier New', Courier, monospace; /* Monoespaciada */
  font-weight: bold;                               /* Negrita */
}

/* Filas alternadas */
.google-sheet-table tbody tr:nth-of-type(odd) {
  background-color: #ccc7c7;
}

.google-sheet-table tbody tr:nth-of-type(even) {
  background-color: #ffffff;
}

/* Efecto hover */
.google-sheet-table tbody tr:hover {
  background-color: #e2e8f0;
  transition: background-color 0.2s ease;
}

/* Ajustes para pantallas pequeñas */
@media screen and (max-width: 600px) {
  .google-sheet-table {
    font-size: 10px;
  }
  .google-sheet-table th,
  .google-sheet-table td {
    padding: 6px 4px;
    font-weight: bold; 
  }
}