/*--------------------------------------------------------
	Add Your Custom Color Option
--------------------------------------------------------*/

.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.sidebar-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.sidebar-scrollbar::-webkit-scrollbar {
  width: 6px;
}

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

.sidebar-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--border);
  border-radius: 9999px;
}

.sidebar-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: var(--muted-foreground);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

html::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

html::-webkit-scrollbar-thumb {
  background-color: var(--border);
  border-radius: 9999px;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: var(--muted-foreground);
}