﻿ 
/* Pantalla de carga */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9); /* Fondo semi-transparente */
    top: 0;
    left: 0;
    z-index: 1050; /* Más alto que otros elementos */
    display: flex;
    justify-content: center;
    align-items: center;
    display: none; /* Oculto por defecto */
}

 
