* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:
    'Inter Variable',
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Fira Sans',
    'Droid Sans',
    'Helvetica Neue',
    sans-serif;
}

#root {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100vh;
}

.hidden {
  display: none;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-solid-brand-primary-alfa-68, rgb(0 117 255 / 0.68));
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

button:focus-visible {
  outline: 2px solid var(--color-solid-brand-primary-alfa-68, rgb(0 117 255 / 0.68));
  outline-offset: 2px;
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  padding-right: var(--spacing-4, 4px);
  background: transparent;
}

::-webkit-scrollbar-thumb {
  width: 3px;
  border: 0 solid transparent;
  border-right: 4px solid transparent;
  border-radius: var(--rounding-max, 999px);

  background: var(--color-content-base-alfa-neutral-12, rgb(179 182 189 / 0.12));
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  width: 6px;
  border-right: 2px solid transparent;
  background: var(--color-content-base-alfa-static-white-20, rgb(255 255 255 / 0.2));
}

/* Firefox */
* {
  scrollbar-color: var(--color-content-base-alfa-neutral-12, rgb(179 182 189 / 0.12)) transparent;
  scrollbar-width: thin;
}
