.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pagination .page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination .page-btn:hover {
  border-color: #4f46e5;
  color: #4f46e5;
}
.pagination .page-btn.active {
  background: #4f46e5;
  border-color: #4f46e5;
  color: #fff;
}
.pagination .page-btn.prev,
.pagination .page-btn.next {
  width: auto;
  padding: 0 16px;
}
.pagination .page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
