/* rsvp.css */

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.rsvp-footnote {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 8px 0 20px;
}
