/* styles.css */

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  user-select: none;
}

.page-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background-color: #fff;
  color: #007bff; /* Cor azul para o texto, pode ser a do seu sistema */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.page-item:hover {
  background-color: #f8f9fa;
  border-color: #adb5bd;
}

.page-item.ellipsis {
  border: none;
  background: none;
  padding: 0 5px;
}

/* --- Estilo Ativo (Conforme sua imagem) --- */
.page-item.active {
  background-color: #007bff;
  border-color: #007bff;
  color: #ffffff;
  cursor: default;
}

/* --- Estilo Desativado --- */
.page-item.disabled {
  color: #adb5bd;
  background-color: #f8f9fa;
  cursor: not-allowed;
  pointer-events: none;
}
