:root {
  --primary-color: #3b82f6;
  --bg-gray: #f9fafb;
  --border-color: #e5e7eb;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.page-btn, .num-btn {
  border: 1px solid var(--border-color);
  background: white;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-dark);
  transition: background 0.2s;
}

.num-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.page-btn:hover:not(:disabled), .num-btn:hover:not(.active) {
  background: var(--bg-gray);
}

.placeholder-text {
  padding: 50px 0;
  text-align: center;
  color: var(--text-gray);
}