/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Pantalla de carga (splash screen) */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  transition: opacity 0.5s ease-out;
}

#splash img {
  width: 100px;
  animation: fade-in 1s ease-in-out;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Estado de conexión */
#status {
  font-size: 1.2em;
}
