
/* App Loading Screen */

body {
  margin: 0;
  padding: 0;
}

app-root:empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: white;
}

app-root:empty::after {
  content: '';
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #0033aa;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}