#seo-crawl-summary {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1419;
}

#seo-crawl-summary .brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

#seo-crawl-summary .brand img {
  height: 2rem;
  width: auto;
  opacity: .95;
}

#seo-crawl-summary .spin {
  width: 1.4rem;
  height: 1.4rem;
  border: 2px solid rgba(255, 255, 255, .15);
  border-top-color: #00ff88;
  border-radius: 50%;
  animation: pulse-spin .8s linear infinite;
}

#seo-crawl-summary .sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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