/******************************************************************************/
/* Pagination                                                                 */
/******************************************************************************/

/* Row that contains BOTH: page control (left) + page info (right) */
.pagination-row {
  display: flex;
  justify-content: space-between;   /* left / right */
  align-items: center;              /* vertically centered */
  padding: 4px 8px;                 /* small vertical padding */
}

/* Left: pagination buttons */
.pagination-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 0;                    /* remove old top margin so it centers nicely */
}

.pagination-controls button {
  padding: 2px 6px;
  font-size: 12px;
  border: none;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  min-width: 22px;
  height: 22px;
  line-height: 1.2;
  transition: background .2s ease;
  color: #000;         /* dark green text */
  font-weight: 400 !important;
}

.pagination-controls button:hover:not(.active):not(:disabled) {
  background: #f0f0f0;
}

.pagination-controls button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.pagination-controls button.active,
.pagination-controls button.active:disabled {
  background: var(--brand-dark);    /* dark green */
  color: #fff;
  cursor: default;
  opacity: 1;
}

.pagination-controls span {
  color: var(--brand-dark);         /* ellipsis same green */
  font-size: 12px;
  padding: 0 4px;
}

/* Right: "11–15 of 16" */
.page-info {
  font-size: 12px;
  color: #000;         /* dark green like header */
  padding-top: 4px;
}
