.wizard-anliegen-step {
    padding: 1.5rem 1rem;
}
.wizard-step-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--l-text);
}
.wizard-patient-name,
h2 .wizard-patient-name,
.wizard-step-title .wizard-patient-name,
span.wizard-patient-name,
a.wizard-patient-name {
    color: var(--l-primary) !important;
    text-decoration: none !important;
    font-weight: 700;
}
.wizard-anliegen-groups {
    display: block;
    margin-bottom: 2rem;
    gap: 0;
}
.wizard-anliegen-group {
    margin-bottom: 2rem;
}
.wizard-anliegen-group h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--l-text);
}
.wizard-anliegen-btn {
    display: block;
    width: 100%;
    margin-bottom: 0.7rem;
    background: var(--l-bg-elevated);
    border: 1px solid var(--l-border);
    color: var(--l-text);
    border-radius: var(--l-radius-md);
    padding: 0.7rem 0.5rem;
    font-size: 1rem;
    text-align: left;
    transition: background var(--l-transition-fast), border var(--l-transition-fast);
    box-sizing: border-box;
}
.wizard-anliegen-btn:hover {
    background: var(--l-bg-surface);
    border-color: var(--l-primary);
    color: var(--l-primary);
}
.wizard-anliegen-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.7rem;
}
.wizard-back-btn, .wizard-cancel-btn {
    min-width: 100px;
}

/* ========== Wizard Step Header & Progress Indicator ========== */
.wizard-step-header {
    text-align: center;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
}

.step-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--l-bg-surface);
    color: var(--l-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
}

.step-badge.active {
    background: var(--l-primary);
    color: var(--l-text-on-primary);
}

.step-badge.completed {
    background: var(--l-success);
    color: var(--l-text-on-primary);
}

.step-label {
    color: var(--l-text-secondary);
}

.step-arrow {
    color: var(--l-text-secondary);
}

/* ========== Wizard Footer ========== */
.wizard-footer {
    padding: 12px 0 0 0;
}

/* ========== Episode Mode Options ========== */
.mode-option {
    padding: 12px;
    border: 2px solid var(--l-border);
    border-radius: var(--l-radius-md);
    cursor: pointer;
    text-align: center;
    transition: all var(--l-transition-fast);
    background: var(--l-bg-elevated);
}

.mode-option:hover {
    border-color: var(--l-primary);
}

.mode-option.selected {
    border-color: var(--l-primary);
    background: var(--l-primary-bg, rgba(0, 32, 25, 0.05));
}

.mode-icon {
    font-size: 1.5rem;
    color: var(--l-primary);
    margin-bottom: 4px;
}

.mode-title {
    font-weight: 600;
    color: var(--l-text);
}

.dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--l-border-light);
}
