html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overscroll-behavior-y: none;
}

/* A custom focus ring for accessibility, using the app's theme colors. */
*:focus-visible {
    outline: 3px solid #FCC737; /* inclusi-yellow */
    outline-offset: 2px;
    border-radius: 6px;
}

/* Custom Scrollbar for a more branded feel on Webkit browsers */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 10px;
}
.dark ::-webkit-scrollbar-track {
  background: #1a2228;
}

::-webkit-scrollbar-thumb {
  background: #92CC27; /* inclusi-green-light */
  border-radius: 10px;
  border: 2px solid #e0e0e0;
}
.dark ::-webkit-scrollbar-thumb {
  background: #92CC27;
  border-color: #1a2228;
}

::-webkit-scrollbar-thumb:hover {
  background: #6DB835; /* inclusi-green-dark */
}
