
/* CSS de la modal veillez patienter */


body.modal-open {
    pointer-events: none; /* Désactive tous les clics en arrière-plan */
}

.modal {
    pointer-events: auto; /* Réactive les clics à l'intérieur de la modal */
}


.spinner-border {
    width: 50px !important;
    height: 50px !important;
    border: 5px solid #f3f3f3 !important;
    border-top: 5px solid #3498db !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    margin: 10px auto !important;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}