/* 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); }
.wizard-buttons.top-buttons { border-top: none; border-bottom: 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; }

/* Accordion Custom Styling */
.accordion-item {
    border: 1px solid var(--border, #dee2e6);
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}
.accordion-header {
    margin-bottom: 0;
}
.accordion-button {
    background-color: var(--surface-2, #f8f9fa);
    color: var(--primary, #002e57);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 15px 20px;
}
.accordion-button:not(.collapsed) {
    background-color: var(--primary, #002e57);
    color: #fff;
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(13%) sepia(34%) saturate(4646%) hue-rotate(192deg) brightness(96%) contrast(101%);
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.accordion-body {
    padding: 25px;
    background-color: #fff;
}
.accordion-body ul {
    margin-left: 20px;
    list-style-type: disc;
}
.accordion-body li {
    margin-bottom: 10px;
    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 .accordion-item {
    border: 1px solid var(--border, #dee2e6);
    background-color: #fff;
}
.document-list .accordion-button {
    font-size: 1rem;
    padding: 12px 15px;
    background-color: #f1f4f8;
}
.document-list .accordion-button:not(.collapsed) {
    background-color: var(--primary, #002e57);
    color: #fff;
}
.document-list .accordion-body {
    padding: 20px;
}
.document-list h4 { margin-top: 25px; margin-bottom: 20px; color: #333; }
.document-list h4:first-child { margin-top: 0; }
