  .custom-pagination-wrapper {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.custom-pagination {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
}

.custom-pagination li {
  display: inline;
}

.custom-page-link {
  display: inline-block;
  padding: 0.6rem 1rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
}

.custom-page-link:hover {
  background-color: #444;
}

.custom-page-link.active {
  background-color: #f86d1c; /* A nice orange for active page */
  color: #fff;
  pointer-events: none;
  cursor: default;
}

