/* cthin-scrollbar.css */
.cthin-scrollbar {
  --cthin-scrollbar-size: 6px;
  --cthin-scrollbar-thumb: rgba(0, 0, 0, 0.35);
  --cthin-scrollbar-thumb-hover: rgba(0, 0, 0, 0.55);
}

/* Chrome, Edge, Safari */
.cthin-scrollbar::-webkit-scrollbar {
  height: var(--cthin-scrollbar-size);
}

.cthin-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.cthin-scrollbar::-webkit-scrollbar-thumb {
  background: var(--cthin-scrollbar-thumb);
  border-radius: 999px;
}

.cthin-scrollbar::-webkit-scrollbar-thumb:hover {
  background: var(--cthin-scrollbar-thumb-hover);
}

/* Hide old scrollbar arrows/buttons where Chrome/WebKit exposes them */
.cthin-scrollbar::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

/* Firefox only: no exact px height support, only thin/auto/none */
@supports (-moz-appearance: none) {
  .cthin-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: var(--cthin-scrollbar-thumb) transparent;
  }
}