/* -------------------------------------
  Generate-Btn Styles
-------------------------------------- */
#loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loading-screen {
  text-align: center;
  color: white;
  font-size: 1.2rem;
}

.spinner {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid #00d1b2;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

.spinner.large {
  width: 40px;
  height: 40px;
  border-width: 4px;
  margin-bottom: 0.8rem;
}

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