/* helpi_frontend/static/css/wizard.css */
.step-indicator {
    flex: 1;
    text-align: center;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.step-indicator.active,
.step-indicator.completed {
    opacity: 1;
}
.step-indicator .step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 1.25rem;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.step-indicator.active .step-circle {
    background: white;
    color: #667eea;
    border-color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.step-indicator.completed .step-circle {
    background: #28a745;
    border-color: #28a745;
}
.step-indicator .step-label {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.wizard-step {
    animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.form-control:focus,
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}