/* web/splash.css */

html, body {
  height: 100%;
  margin: 0;
}

#splash {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #F9FAFB;
  height: 100%;
  font-family: Arial, sans-serif;
}

#splash img {
  width: 140px;
  margin-bottom: 20px;
}

.loader {
  width: 36px;
  height: 36px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #22b8cf;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
