.classificacao-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.title {
  text-align: center;
  color: #00439b;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.table-container {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

th,
td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #00439b;
  color: white;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.5);
}

tr:hover {
  background-color: rgba(0, 136, 204, 0.1);
}

.highlight-row {
  background-color: rgba(0, 136, 204, 0.2) !important;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .table-container {
    margin: 1rem 0;
  }

  table th,
  table td {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .team-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  @media screen and (max-width: 768px) {
    .table-container {
      margin: 1rem 0;
    }

    table th,
    table td {
      padding: 0.5rem;
      font-size: 0.9rem;
    }

    .team-logo {
      width: 22px;
      height: 22px;
    }
  }

  @media screen and (max-width: 480px) {
    table th,
    table td {
      padding: 0.4rem;
      font-size: 0.85rem;
    }

    .team-logo {
      width: 18px;
      height: 18px;
    }
  }
}

.division-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.tab-button {
  padding: 10px 20px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #00439b;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.active {
  background: #00439b;
  color: white;
}

.tab-button:hover {
  background: #00439b;
  color: white;
}

.division-content {
  display: none;
}

.division-content.active {
  display: block;
}
