/* Small overrides on top of the Tailwind CDN build used by the plain-HTML pages. */

body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

.sidebar-link.active {
  background-color: rgba(70, 95, 255, 0.1);
  color: #465fff;
  font-weight: 600;
}

.sidebar-link.active svg {
  color: #465fff;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border-radius: 9999px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

html.dark ::-webkit-scrollbar-thumb {
  background-color: #374151;
}
