/* Erster Paint vor React-Bundle (liegt in public/, kein Vite-HTML-Inline-Proxy) */
body {
  background-color: #f9fafb;
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
}
#root:empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
#root:empty::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top-color: #1e40af;
  border-radius: 50%;
  animation: lk-splash-spin 1s infinite linear;
}
@keyframes lk-splash-spin {
  to {
    transform: rotate(1turn);
  }
}
