.toolbar {
  position: fixed;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}

.toolbar button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: #2b201a;
  color: #f7efe4;
  font-weight: 600;
  cursor: pointer;
}

.toolbar button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-label {
  font-size: 14px;
  color: #4a3a30;
  padding-left: 6px;
}