/* ==========================================
   IndoBridge - Pagination
========================================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  margin-top: 48px;
  flex-wrap: wrap;
}

.page-btn {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 14px;

  background: white;
  color: #475569;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: 0.2s;
}

.page-btn:hover {
  transform: translateY(-2px);
  background: #f8fafc;
  color: #0f766e;
}

.page-btn.active {
  background: #0f766e;
  color: white;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.28);
}

.page-btn:disabled {
  opacity: 0.45;
  cursor: default;
  background: #f8fafc;
  color: #cbd5e1;
  box-shadow: none;
}

.page-btn:disabled:hover {
  transform: none;
  background: #f8fafc;
  color: #cbd5e1;
}

.page-btn.arrow {
  width: auto;
  padding: 0 18px;
  font-size: 14px;
  gap: 6px;
}

.page-btn.arrow:hover {
  background: #ecfeff;
}

.pagination-dots {
  color: #94a3b8;
  font-size: 18px;
  font-weight: 800;
  padding: 0 6px;
  user-select: none;
}