.spa-view-fallback {
  max-width: 36rem;
  margin: 2.5rem auto;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--color-divider, rgba(255, 255, 255, 0.1));
  background: var(--color-surface, #111827);
  color: var(--color-text, #e2e8f0);
}

html.light .spa-view-fallback {
  background: #fff;
  color: #0f172a;
  border-color: #e2e8f0;
}

.spa-view-fallback__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.spa-view-fallback__text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted, #94a3b8);
}

.spa-view-fallback__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.spa-view-fallback__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  border-radius: 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}

.spa-view-fallback__btn--primary {
  background: #00d2ff;
  color: #0b1120;
}

.spa-view-fallback__btn--secondary {
  background: transparent;
  color: inherit;
  border-color: var(--color-divider, rgba(255, 255, 255, 0.15));
}

html.light .spa-view-fallback__btn--secondary {
  border-color: #cbd5e1;
}
