.scrollbar-hidden {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */

  /* Chrome, Safari and Opera */
  &::-webkit-scrollbar {
    display: none;
  }
}

.border-thin {
  @apply border border-gray-200 dark:border-gray-900;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: transparent;
}

.dark ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #18181b;
}

.dark .slimscroll::-webkit-scrollbar {
  border-radius: 12px;
}

::-webkit-scrollbar-track {
  background-color: #f4f4f5;
  border-radius: 8px;
}

.dark ::-webkit-scrollbar-track {
  background: #09090b;
  border-radius: 8px;
}

.dark .slimscroll::-webkit-scrollbar-track {
  background: #18181b;
  border-radius: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #d4d4d8;
  border: 2px solid #f4f4f5;
  border-radius: 8px;
}

.dark ::-webkit-scrollbar-thumb {
  background-color: #27272a;
  border: 2px solid #09090b;
  border-radius: 8px;
}

.dark .slimscroll::-webkit-scrollbar-thumb {
  background-color: #27272a;
  border: 2px solid #18181b;
  border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #a1a1aa;
}

.dark ::-webkit-scrollbar-thumb:hover {
  background-color: #3f3f46;
}
