/* Custom styles pour CICII RDC */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Indicateur d'étapes (Wizard Progress Bar) */
.step-wizard {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.step-wizard::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #dee2e6;
    z-index: 1;
    transform: translateY(-50%);
}

.step-wizard-item {
    position: relative;
    z-index: 2;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step-wizard-item.active {
    border-color: #0d6efd;
    background-color: #0d6efd;
    color: #fff;
}

.step-wizard-item.completed {
    border-color: #198754;
    background-color: #198754;
    color: #fff;
}

/* Animation des étapes du formulaire */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}