/* Ajoutez ceci à votre fichier CSS */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fond semi-transparent pour assombrir la page */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Assure que l'écran de chargement est au-dessus de tout le reste */
}
#loading-screen img {
    width: 200px; /* Ajustez la taille de l'image en fonction de vos besoins */
    height: 200px;
}
