/* Scrollbar in the editorial palette: ink hairline on paper. */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #1a1a1a;
  border: 3px solid #fdfbf9;
}

::-webkit-scrollbar-track {
  background: #fdfbf9;
}

html {
  scrollbar-color: #1a1a1a #fdfbf9;
  scrollbar-width: thin;
}

.no-scrollbar-8080 {
  -ms-overflow-style: none; /* IE dan Edge */
  scrollbar-width: none; /* Firefox */
}
.no-scrollbar-8080::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
