/* static/css/wizard_loader.css - Loading overlay styles */

.wizard-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.wizard-loading-content {
  background: #fff;
  padding: 2.5rem 3rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  animation: fadeInScale 0.3s ease-out;
}

.wizard-loading-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Button disabled state */
button.disabled,
button:disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
}
