.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.page-btn {
  padding: 8px 16px;
  border-radius: 8px;
  background: #1e293b;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.page-btn:hover {
  background: #334155;
  transform: translateY(-1px);
}

.page-btn.disabled {
  background: #cbd5f5;
  color: #64748b;
  cursor: not-allowed;
  pointer-events: none;
}

.page-info {
  font-size: 14px;
  color: #475569;
}

.page-info strong {
  color: #0f172a;
}