.autosave-feedback-host {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  min-height: 1.35rem;
  flex-shrink: 0;
}

.autosave-feedback-host[hidden] {
  display: none !important;
}

.autosave-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.autosave-toggle-wrap__status {
  width: 1.35rem;
  min-height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.autosave-toggle-wrap__status .autosave-feedback-host[hidden] {
  display: inline-flex !important;
}

.autosave-feedback__spinner {
  width: 0.95rem;
  height: 0.95rem;
  border: 2px solid var(--border-primary);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: autosave-feedback-spin 0.65s linear infinite;
}

.autosave-feedback__check {
  color: #22c55e;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.autosave-feedback__error {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

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