:root {
  user-select: none; /* Standard */
  -webkit-user-select: none; /* Safari/Chrome */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
}

* {
  font-family: "Poppins", sans-serif !important;
}

body {
  overscroll-behavior: none !important;
  font-family: "Poppins", sans-serif !important;
  padding-top: var(--navbar-height) !important;
}

::-webkit-scrollbar {
  width: 12px !important;
}

::-webkit-scrollbar-track {
  background: linear-gradient(to bottom, #cce6ff, #ffffff) !important;
  border-radius: 6px !important;
}

::-webkit-scrollbar-thumb {
  background-color: #6c4bc1 !important;
  border-radius: 6px !important;
  border: 2px solid #ffffff !important;
  animation: thumbColorShift 3s infinite linear !important;
}

:-webkit-scrollbar-thumb:hover {
  background-color: #8a6de0 !important;
}
