.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  gap: 10px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}

.pagination .page-link,
.pagination .page-arrow {
  padding: 8px 12px;
  font-size: 16px;
  color: #007bff;
  text-decoration: none;
  border: 1px solid #007bff;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  min-width: 40px;
  text-align: center;
}

.pagination .page-link:hover,
.pagination .page-arrow:hover {
  background: #007bff;
  color: white;
}

.page-link.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
  cursor: default;
}

.page-arrow.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}
