/* Estilo para la pantalla de carga */
#splashScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

/* Animación de carga */
#splashScreen .loader {
    width: 50px;
    height: 50px;
    border: 5px solid #007bff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-top: 10px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Ocultar splash cuando se carga */
.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Ocultar logo inicialmente */
#logo {
    display: none;
}
