/* Wizard Overlay Styles */
.wizard-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.wizard-overlay.overlay-hidden {
  opacity: 0;
  pointer-events: none;
}

.wizard-content {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.wizard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.wizard-header h2 {
  margin: 0;
  font-size: 24px;
  color: #20212D;
}

.wizard-close-btn {
  background: none;
  border: none;
  font-size: 32px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.2s;
}

.wizard-close-btn:hover {
  color: #20212D;
}

.wizard-body {
  padding: 32px;
  flex: 1;
  overflow-y: auto;
  min-height: 300px;
}

.wizard-step {
  animation: fadeIn 0.3s ease;
}

.wizard-step-hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-step h3 {
  margin: 0 0 16px 0;
  font-size: 20px;
  color: #20212D;
}

.wizard-question {
  margin: 0 0 24px 0;
  font-size: 16px;
  color: #666;
}

.wizard-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wizard-option-btn {
  padding: 16px 24px;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  color: #20212D;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wizard-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}

.wizard-emoji {
  font-size: 24px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.wizard-option-btn span {
  flex: 1;
}

.wizard-option-btn:hover {
  background: #e8f4fd;
  border-color: #B9D9FF;
}

.wizard-option-btn.selected {
  background: #B9D9FF;
  border-color: #9BC2FF;
  color: #20212D;
  font-weight: 600;
}

.wizard-dropzones-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.wizard-dropzone-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wizard-dropzone-wrapper {
  position: relative;
}

.wizard-dropzone-area {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #fafafa;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wizard-dropzone-area:hover {
  border-color: #B9D9FF;
  background: #f0f7ff;
}

.wizard-dropzone-area.drag-over {
  border-color: #9BC2FF;
  background: #e8f4fd;
}

.wizard-dropzone-text {
  margin: 0 0 8px 0;
  color: #20212D;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.wizard-dropzone-emoji {
  font-size: 20px;
  margin-right: 8px;
  flex-shrink: 0;
}

.wizard-dropzone-subtext {
  margin: 0;
  color: #666;
  font-size: 12px;
}

.wizard-dropzone-file-list {
  max-height: 150px;
  overflow-y: auto;
  border-top: 1px solid #e0e0e0;
  padding-top: 8px;
}

.wizard-dropzone-file-item {
  padding: 4px 0;
  word-break: break-word;
}

.wizard-dropzone-file-item .upload-status-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.wizard-upload-progress {
  margin-top: 16px;
  min-height: 20px;
}

.wizard-footer {
  padding: 20px 24px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wizard-nav-btn {
  padding: 10px 20px;
  background: #20212D;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.wizard-nav-btn:hover {
  background: #494A56;
}

.wizard-progress-indicator {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.wizard-finish-btn {
  margin-left: auto;
}

.wizard-progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  transition: background 0.2s;
}

.wizard-progress-dot.active {
  background: #20212D;
}

.hidden-file-input {
  display: none;
}

@media (max-width: 768px) {
  .wizard-content {
    max-width: 100%;
    max-height: 95vh;
  }
  
  .wizard-body {
    padding: 24px;
  }
  
  .wizard-options {
    gap: 10px;
  }
  
  .wizard-option-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
  
  .wizard-dropzones-container {
    grid-template-columns: 1fr;
  }
}

