/* Styles extracted from wizard_introduction.html */
.wizard-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--surface, #fff);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}
.wizard-header {
  background-color: var(--primary, #002e57);
  color: #fff;
  padding: 15px;
  text-align: center;
}
.wizard-header h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.wizard-header p { font-size: 0.9rem; margin-bottom: 0; }
.wizard-content { padding: 30px; min-height: 400px; }
.wizard-progress { display: flex; background-color: var(--surface-2, #e9ecef); padding: 0; margin: 0; }
.progress-step {
  flex: 1; padding: 15px; text-align: center; border-right: 1px solid var(--border, #dee2e6);
  position: relative; background-color: var(--surface-2, #e9ecef); color: var(--muted, #6c757d);
  font-size: 14px; transition: all 0.3s ease; user-select: none;
}
.progress-step:last-child { border-right: none; }
.progress-step.active { background-color: var(--primary, #002e57); color: #fff; font-weight: bold; }
.progress-step.completed { background-color: var(--success, #0d6efd); color: #fff; }
.wizard-buttons { display: flex; justify-content: flex-end; padding: 20px 30px; background-color: var(--surface-2, #f8f9fa); border-top: 1px solid var(--border, #dee2e6); }
.intro-section { margin-bottom: 30px; }
.intro-section h3 { color: var(--primary, #002e57); margin-bottom: 20px; border-bottom: 2px solid var(--primary, #002e57); padding-bottom: 10px; text-transform: uppercase; font-size: 1.4rem; }
.intro-section ul { margin-left: 20px; list-style-type: disc; }
.intro-section li { margin-bottom: 12px; line-height: 1.5; }
.highlight { background-color: #fff3cd; padding: 20px; border-radius: 8px; margin: 25px 0; border-left: 5px solid #ffc107; }
.document-list { background-color: #fcfcfc; padding: 25px; border-radius: 8px; margin: 25px 0; border: 1px solid #eee; }
.document-list h4 { margin-top: 25px; margin-bottom: 20px; color: #333; }
.document-list h4:first-child { margin-top: 0; }
