.loader {
    font-size: 24px;
    display: flex;
    justify-content: flex-start; /* Aligne les points à gauche */
    align-items: center;
}

.dot {
    opacity: 0;
    animation: blink 2s infinite; /* Durée d'animation augmentée pour plus de temps */
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.4s; /* Délai ajusté pour 5 points */
}

.dot:nth-child(3) {
    animation-delay: 0.8s; /* Délai ajusté pour 5 points */
}

.dot:nth-child(4) {
    animation-delay: 1.2s; /* Délai ajusté pour 5 points */
}

.dot:nth-child(5) {
    animation-delay: 1.6s; /* Délai ajusté pour 5 points */
}

@keyframes blink {
    0%, 20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
