body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

* {
  font-family: "IBM Plex Sans";
  box-sizing: border-box;
}

.font-ibm-plex-sans {
  font-family: "IBM Plex Sans";
}

img {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
}

::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: #cbd5e1; /* slate-300 */
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8; /* slate-400 */
}
