html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

/* Logo na ekranie powitalnym (splash) — duże, wypełnia niebieskie koło.
   Wymuszamy rozmiar i zdejmujemy ograniczenia rodzica (!important bije inline style). */
img[src*="SplashScreen.svg"] {
  width: 110px !important;
  height: 110px !important;
  min-width: 110px !important;
  min-height: 110px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
}

.header-logo {
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url('../images/logo.svg');
  mask: url('../images/logo.svg');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 110px;
  height: 24px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}