﻿

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fafbfd; /* Fondo oscuro */
    display: flex; /* Cambiado a "flex" por defecto */
    justify-content: center;
    align-items: center;
    opacity: 0; /* Comienza invisible */
    visibility: hidden; /* No visible inicialmente */
    transition: opacity 0.3s ease; /* Transición suave */
    z-index: 9999;
}
