/* Staff-only "Sync Peoply now" button (events/partials/
peoply_sync_button.html) -- deliberately understated (outline, small text)
since it's an admin tool a visitor never sees, not a visitor-facing call
to action. */
.peoply-sync-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin: 0.5rem 0;
}

.peoply-sync-warning {
  font-size: 0.65rem;
  font-style: italic;
  color: var(--color-error);
}

.peoply-sync-button {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: none;
  color: var(--color-text-muted);
  cursor: pointer;
}

.peoply-sync-button:hover,
.peoply-sync-button:focus-visible {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

.peoply-sync-button:disabled {
  opacity: 0.5;
  cursor: default;
}
