/* =========================
   BREAKPOINTS
========================= */
/* Mobile */
/* Tablet */
/* Desktop */
.pagination-container {
  margin-top: 2rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-item {
  margin: 0;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.9rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.page-link:hover {
  color: #1ea9e2;
  border-color: #1ea9e2;
  background: #eef9fe;
  transform: translateY(-2px);
}

.page-item.active .page-link {
  background: #1ea9e2;
  border-color: #1ea9e2;
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 169, 226, 0.3);
}

.page-item.disabled .page-link {
  background: #f9fafb;
  color: #9ca3af;
  border-color: #e5e7eb;
  cursor: not-allowed;
  box-shadow: none;
}

.page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(30, 169, 226, 0.2);
}

.small.text-muted {
  color: #6b7280 !important;
  font-size: 0.95rem;
  font-weight: 500;
}

.small.text-muted .fw-semibold {
  color: #111827;
}

@media (max-width: 768px) {
  .pagination {
    gap: 0.35rem;
  }
  .page-link {
    min-width: 38px;
    height: 38px;
    padding: 0 0.75rem;
    font-size: 0.9rem;
    border-radius: 8px;
  }
}/*# sourceMappingURL=pagination.css.map */