.wizard-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  display: none;
  z-index: 99999;
}

body.wizard-open .wizard-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard-container {
  width: min(900px, 95vw);
  height: min(80vh, 900px);
  background: #111;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  color: white;
}

.wizard-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.wizard-progress {
  height: 4px;
  background: #333;
  margin-bottom: 20px;
}

#wizard-progress-bar {
  height: 100%;
  width: 10%;
  background: #7c5cff;
}