/* Style pour l'indicateur de chargement */
#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #f2f2f2; /* Fond gris clair */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000; /* Toujours au-dessus */
}

/* La roue qui tourne */
.spinner {
	width: 50px;
	height: 50px;
	border: 7.5px solid #ddd;
	border-top-color: #999; /* Couleur de la partie visible */
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

/* Animation de rotation */
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
