body {
    padding-bottom: 2rem;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.step-indicator .step {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: #6c757d;
}

.step-indicator .step.active {
    background: #0d6efd;
    color: white;
}

.step-indicator .step.completed {
    background: #198754;
    color: white;
}
