html {
  font-family: var(--font-family-sans);
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--color-bg-app);
  color: var(--color-text-primary);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

[hidden] {
  display: none !important;
}


.app-shell-alert-wrap {
  position: fixed;
  right: 16px;
  top: 16px;
  z-index: 60;
  display: grid;
  gap: 8px;
  max-width: 360px;
}
