
/* =========================
   PAGINATION - CLEAN STYLE
========================= */
.website-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* DEFAULT BUTTON */
.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;

  border-radius: 6px;
  border: 1px solid transparent;

  background: transparent;
  color: #444;
  font-size: 14px;
  font-weight: 500;

  cursor: pointer;

  transition: all 0.2s ease;
}

/* HOVER */
.page-btn:hover:not(.active):not(.disabled) {
  background: rgba(0, 128, 0, 0.08);
  color: green;
}

/* ACTIVE PAGE */
.page-btn.active {
  background: green;
  color: #fff;
  font-weight: 600;
}

/* DISABLED */
.page-btn.disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* PREV / NEXT STYLE */
.page-btn:first-child,
.page-btn:last-child {
  border: 1px solid #ddd;
  background: #fafafa;
}

.page-btn:first-child:hover:not(.disabled),
.page-btn:last-child:hover:not(.disabled) {
  background: #f0f0f0;
  color: #222;
}
