/* Runtime layout fixes only. Keep the authored Prismtek pixel theme untouched. */
html {
  min-height: 100%;
  min-height: 100dvh;
  background: #0f1023;
}

body,
#root,
.app-shell {
  min-height: 100%;
  min-height: 100dvh;
}

body {
  background-color: #0f1023;
}

.app-shell {
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
}

.site-footer-inner {
  padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
}

@supports not (height: 100dvh) {
  html,
  body,
  #root,
  .app-shell {
    min-height: 100vh;
  }
}
