* {
  outline: none !important;
  box-sizing: border-box;
}

:root {
  --border-radius-xs: 0.0625rem;
  --border-radius-sm: 0.125rem;
  --border-radius-md: 0.25rem;
  --border-radius-lg: 0.5rem;
  --border-radius-full: 99rem;

  --button-regular-height: 2.5rem;
  --button-small-height: 1.75rem;
  --button-tiny-height: 1.5rem;

  --global-header-height: 2.75rem;

  --global-left-sidebar-width: 22.5rem;
  --global-right-sidebar-width: 22.5rem;
}

html {
  height: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: var(--color-text-primary);
  text-align: left;
  background-color: var(--color-surface-base);
  overscroll-behavior: none;
}

a {
  color: inherit;
  text-decoration: none;
}

pre {
  margin: 0;
}

.global-spacer {
  width: 1px;
  height: 100%;
  background-color: var(--color-surface-mid);
}
.global-flex {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/*
  Breakpoints
  ===========
    mobile             0px -  719.98px
    small desktop    720px - 1010.98px
    medium desktop  1011px - 1349.98px
    desktop         1350px -      ∞ px
*/

@media (max-width: 719.98px) {
  body {
    min-width: 0;
  }
  .global-hide-on-mobile-down {
    display: none !important;
  }
}

@media (max-width: 1010.98px) {
  .global-hide-on-small-desktop-down {
    display: none !important;
  }
}

@media (max-width: 1349.98px) {
  .global-hide-on-medium-desktop-down {
    display: none !important;
  }
}

@media (min-width: 720px) {
  .global-hide-on-small-desktop-up {
    display: none !important;
  }
}

@media (min-width: 1011px) {
  .global-hide-on-medium-desktop-up {
    display: none !important;
  }
}

@media (min-width: 1350px) {
  .global-hide-on-desktop-up {
    display: none !important;
  }
}
