html,
body,
#app {
  min-height: 100%;
  margin: 0;
}

#app {
  isolation: isolate;
}

#blazor-error-ui {
  color-scheme: light only;
  background: rgb(254, 249, 195);
  border-top: 1px solid rgb(23, 23, 23);
  bottom: 0;
  box-sizing: border-box;
  display: none;
  left: 0;
  padding: 10px 40px 10px 16px;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 10px;
}

.ns-fa-icon {
  font-size: 0.92em;
  line-height: 1;
  opacity: 0.86;
  transform: translateY(-0.02em);
}

.text-white .ns-fa-icon,
.bg-primary .ns-fa-icon,
.bg-danger .ns-fa-icon {
  opacity: 0.9;
}

.ns-brand-mark {
  display: inline-flex;
  width: auto;
  height: 2rem;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-start;
  flex-shrink: 0;
  color: rgb(23, 23, 23);
}

.ns-brand-mark-compact {
  width: 2rem;
}

.ns-brand-mark-emblem {
  align-items: center;
  border: 1px solid rgb(212, 212, 212);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  height: 2rem;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  width: 2rem;
}

.ns-brand-mark-copy {
  display: grid;
  gap: 0.05rem;
  line-height: 1;
  min-width: 0;
}

.ns-brand-mark-name {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.ns-brand-mark-scope {
  color: rgb(115, 115, 115);
  font-size: 0.68rem;
  letter-spacing: 0;
  white-space: nowrap;
}

html[data-te-theme=dark] .ns-brand-mark {
  color: rgb(245, 245, 245);
}
html[data-te-theme=dark] .ns-brand-mark-emblem {
  border-color: rgb(55, 65, 81);
}
html[data-te-theme=dark] .ns-brand-mark-scope {
  color: rgb(163, 163, 163);
}
html[data-te-theme=dark] body,
html[data-te-theme=dark] #app {
  background: rgb(3, 7, 18);
  color: rgb(245, 245, 245);
}
html[data-te-theme=dark] .bg-white,
html[data-te-theme=dark] .bg-white\/95 {
  background-color: rgb(17, 24, 39) !important;
}
html[data-te-theme=dark] .bg-neutral-50 {
  background-color: rgb(3, 7, 18) !important;
}
html[data-te-theme=dark] .bg-neutral-100 {
  background-color: rgb(31, 41, 55) !important;
}
html[data-te-theme=dark] .bg-neutral-900\/50 {
  background-color: rgba(0, 0, 0, 0.72) !important;
}
html[data-te-theme=dark] .border-neutral-100,
html[data-te-theme=dark] .border-neutral-200,
html[data-te-theme=dark] .border-neutral-300 {
  border-color: rgb(55, 65, 81) !important;
}
html[data-te-theme=dark] .text-neutral-900 {
  color: rgb(245, 245, 245) !important;
}
html[data-te-theme=dark] .text-neutral-700 {
  color: rgb(212, 212, 212) !important;
}
html[data-te-theme=dark] .text-neutral-600,
html[data-te-theme=dark] .text-neutral-500 {
  color: rgb(163, 163, 163) !important;
}
html[data-te-theme=dark] .text-neutral-400 {
  color: rgb(115, 115, 115) !important;
}
html[data-te-theme=dark] .hover\:bg-neutral-100:hover,
html[data-te-theme=dark] .focus\:bg-neutral-100:focus {
  background-color: rgb(31, 41, 55) !important;
}
html[data-te-theme=dark] .hover\:text-neutral-900:hover {
  color: rgb(245, 245, 245) !important;
}
html[data-te-theme=dark] input,
html[data-te-theme=dark] select,
html[data-te-theme=dark] textarea {
  background-color: rgb(17, 24, 39);
  border-color: rgb(55, 65, 81);
  color: rgb(245, 245, 245);
}
html[data-te-theme=dark] input::placeholder,
html[data-te-theme=dark] textarea::placeholder {
  color: rgb(115, 115, 115);
}

.loading-progress {
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  inset: 20vh 0 auto 0;
  margin: 0 auto;
}

.loading-progress circle {
  fill: none;
  stroke: rgb(212, 212, 212);
  stroke-width: 0.6rem;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
}

.loading-progress circle:last-child {
  stroke: rgb(20, 184, 166);
  stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
  transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
  position: absolute;
  text-align: center;
  font-weight: 600;
  inset: calc(20vh + 32px) 0 auto 0;
}

.loading-progress-text::after {
  content: var(--blazor-load-percentage-text, "Loading");
}
