/* Wizard step indicators */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.wizard-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    z-index: 0;
}

.wizard-step .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.wizard-step .step-label {
    margin-top: 5px;
    font-size: 12px;
    color: #999;
    text-align: center;
}

.wizard-step.active .step-number {
    background-color: #428bca;
    color: white;
}

.wizard-step.active .step-label {
    color: #428bca;
    font-weight: bold;
}

.wizard-step.completed .step-number {
    background-color: #5cb85c;
    color: white;
}

.wizard-step.completed::after {
    background-color: #5cb85c;
}
