﻿/* Entire scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05); /* or subtle color */
    background-clip: border-box;
}

/* Thumb (draggable part) */
::-webkit-scrollbar-thumb {
    background: var(--nh-color-accent-darker);
    border-radius: 8px;
    border: 2px solid transparent;
    background-clip: content-box;
}

    /* Hover effect */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--nh-color-accent);
    }

/* Remove arrows/buttons */
::-webkit-scrollbar-button {
    display: none;
}
