.scrollbar::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background: transparent;
}

.scrollbar::-webkit-scrollbar-thumb {
  background: var(--accent-pink-dark);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
  background: var(--accent-pink-light);
}

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

.scrollbar:hover::-webkit-scrollbar-thumb {
  background: var(--accent-pink-light);
}