.center-state {
  min-height: min(72dvh, 680px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.center-state h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.08;
}

.center-state p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border-radius: 999px;
  border: 3px solid rgba(29, 61, 47, 0.12);
  border-top-color: var(--green);
  animation: spin 0.8s linear infinite;
}

.empty-gap {
  height: 12px;
}

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