/* ======================
   TABELA DE PARTIDAS
====================== */

.tabela-partidas {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.tabela-partidas thead {
  background: var(--verde);
  color: #fff;
}

.tabela-partidas th,
.tabela-partidas td {
  padding: 14px 12px;
  text-align: center;
  font-size: 0.95rem;
  word-wrap: break-word;
}

.tabela-partidas th {
  font-weight: bold;
}

/* Linhas */
.tabela-partidas tbody tr:nth-child(even) {
  background: var(--cinza);
}

.tabela-partidas tbody tr:hover {
  background: #e8f3ec;
}

/* Jogadores */
.jogadores {
  font-weight: bold;
  color: var(--verde-escuro);
}

/* Placar */
.placar {
  font-weight: bold;
  color: var(--verde);
}

/* Fotos */
.fotos-partida {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.fotos-partida img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}

.fotos-partida img:hover {
  transform: scale(1.1);
}

/* Ações */
.col-acoes {
  font-size: 1.2rem;
}

/* ======================
   RESPONSIVO
====================== */
@media (max-width: 768px) {
  .tabela-partidas {
    font-size: 0.85rem;
  }

  .tabela-partidas th,
  .tabela-partidas td {
    padding: 10px 6px;
  }
}
