/* Per-tenant CSS variable theming */
:root {
  --color-primary: #005596;
  --color-accent:  #F7941D;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

/* Sidebar navy bg shorthand (fallback when Tailwind CDN hasn't parsed yet) */
.bg-navy {
  background-color: #005596;
}
.text-navy {
  color: #005596;
}
.text-orange-500, .text-orange {
  color: #F7941D;
}

/* Blazor reconnect modal */
#blazor-error-ui {
  display: none;
}
#blazor-error-ui[data-show] {
  display: flex;
}
