body {
  overflow-y: auto;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 1);
}

html::-webkit-scrollbar-track {
  background-color: transparent;
}