/* Boot-Shell: Theme-Hintergrund + Ladehinweis, bevor React mountet. */
html.theme-dark,
html.theme-dark body {
  background: #0a0b0e;
  color: #eef0f3;
}
html.theme-daylight,
html.theme-daylight body {
  background: #f6f7f9;
  color: #14161b;
}
html.theme-dark #root:empty::after {
  color: #9aa1af;
}
html.theme-daylight #root:empty::after {
  color: #6b7280;
}
#root:empty:not([data-boot-failed])::after {
  content: 'SoftPatch lädt…';
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: system-ui, sans-serif;
}
