/* -------------------- PAGINATION STYLES -------------------- */
.pagination-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pagination-button {
  margin: 0 4px;
  color: #FF4787;
  padding: 11px 19px;
  background-color: #fff;
  float: right;
  border: 1px solid #dee2e6;
  margin-right: -1px;
  line-height: 1.25;
  min-width: unset;
  cursor: pointer;
}

.pagination-button:hover {
  color: #FFF;
  background: #000;
  border-color: #000;
  text-decoration: none;
}

.pagination-button.active {
  color: #FFF;
  background-color: #333;
  border: 1px solid #333;
}
button.pagination-button[disabled]{
  background-color: #fdfdfd;
  color: #b1b1b1;
  border-color: #e1e1e1;
  cursor: default;
}


/* Desktop/tablet: show everything normally */
.pagination-controls .pagination-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile: only show prev, current number, next number, and next */
@media (max-width: 767px) {
  .pagination-controls .pagination-button.number {
    display: none;
  }
  .pagination-controls .pagination-button.number.show-mobile {
    display: inline-flex; /* current and next numeric only */
  }
  .pagination-controls .pagination-prev,
  .pagination-controls .pagination-next {
    display: inline-flex;
  }
}
