/* Import the design system CSS (mobile-styles imports main-styles) */
@import url('./mobile-styles.css');

/* Heebo font import */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&display=swap');

#app {
  min-height: 100vh;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cfd8dc;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #7f8c8d;
}
