.taca-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.taca-associacao-container {
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.taca-associacao-container h2 {
  color: #00439b;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  border-bottom: 2px solid #00439b;
  padding-bottom: 10px;
}

/* Estilos para os cards de grupos */
.grupos-container {
  display: block;
  margin-bottom: 30px;
}

.grupo-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transition: none;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .grupo-card {
    flex: 0 0 100%;
  }
}

.grupo-card:hover {
  transform: none;
}

.grupo-card h3 {
  background: #00439b;
  color: white;
  padding: 10px 15px;
  margin: 0;
  font-size: 1.2rem;
}

.table-container {
  padding: 10px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  font-size: 1rem;
}

.standings-table th,
.standings-table td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.standings-table th {
  background-color: #00439b;
  color: white;
  font-weight: bold;
}

.standings-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.5);
}

.standings-table tr:hover {
  background-color: rgba(0, 136, 204, 0.1);
}

.pos-cell {
  width: 50px;
  text-align: center;
  font-weight: 600;
}

.team-cell {
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 5px;
}

.team-logo-small {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  object-fit: contain;
}

.standings-table th:first-child {
  width: 60px;
}
.standings-table th:nth-child(9) {
  width: 60px;
}
/* Estilos para a seção de jogos */
.jogos-container {
  margin-top: 30px;
}

.jogos-section {
  margin-bottom: 30px;
}

.match-group {
  background-color: #00439b;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}

.match-score.pending {
  color: #888;
  font-style: italic;
}

/* Mensagem de erro */
.error-message {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.error-message h2 {
  color: #d32f2f;
  margin-bottom: 20px;
}

.error-message p {
  color: #666;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
  .grupos-container {
    grid-template-columns: 1fr;
  }
  
  .standings-table {
    font-size: 0.8rem;
  }
  
  .team-cell span {
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
  }
}