/* Estilos para la pantalla de carga */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#loading-screen .logo {
    width: 300px; /* Ajusta el tamaño del logo según necesites */
}

#loading-screen .loader {
    width: 200px; /* Ajusta el tamaño del gif según necesites */
    margin-top: 20px; /* Espacio entre el logo y el gif */
}

/* Oculta el contenido de la página inicialmente */
#content {
    display: none;
}