/* Barre de navigation */
        .stepper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
	/*gap: 15px;*/
	gap: 10%;
}
.stepper {
	scrollbar-width: thin;
	scrollbar-color: #ccc transparent;
}
/* Boutons ronds */
        .step {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #e0e0e0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	position: relative;
	color: #333;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
/* Effet au survol */
        .step:hover {
	background-color: #cfd8dc;
}
/* Étape active */
        .active-step {
	background-color: #0d6efd;
	color: white;
	transform: scale(1.1);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Style des labels sous les icônes */
        .step-label {
	font-size: 14px;
	text-align: center;
	margin-top: 1px;
	color: #555;
}

.centered-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
.btn-fixed {
	position: fixed;
	bottom: 60px; /* au-dessus du footer */
	right: 20px;
	z-index: 1050;
}
.text-justify {
	text-align: justify;
}
