html {
  width: 100vw;
  margin-left: 0;
  /* Page background driven by theme variable */
  background-color: var(--backgroundAccentLight);
  overflow-x: hidden;
}

:root {
  /* Design tokens (aliases) for consistent Light theme */
  --surface: var(--background_main_color);
  --surface-muted: var(--backgroundAccentDark);
  --surface-subtle: var(--backgroundAccentLight);
  --text-primary: var(--darkFontColor);
  --text-secondary: var(--lightFontColor);
  --brand: var(--brandColor);
  --border-200: var(--borderColor);
  --radius-lg: 14px;
  --shadow-100: 0 1px 2px rgba(16,24,40,.06);
}

html.embed {
  background-color: transparent !important;
}

html.embed #app {
  background-color: transparent !important;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  font-size: 1.75rem;
}

h6 {
  font-size: 1rem;
}

hr {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid var(--borderColor);
}

label {
  margin-bottom: 0.5rem;
}

small {
  font-size: 80%;
  font-weight: 400;
}

a {
  color: var(--linkColor);
  text-decoration: none;
  background-color: #0000;
}

a:hover {
  text-decoration: none;
}

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
}

*::-webkit-scrollbar-track {
  background-color: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}




.gap-1 {
  gap: .25rem;
}
.gap-2 {
  gap: .5rem;
}
.gap-3 {
  gap: .75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
