@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  overflow: hidden; /* Prevent body scroll, let views scroll */
}

::selection {
  background-color: var(--primary-light);
  color: var(--primary);
}

a {
  color: var(--primary);
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
}

#app {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

#views-container {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
