/* Chrome, Edge, Safari */
*:not(body, html)::-webkit-scrollbar {
    width: 18px;
    min-height: 10px;
    background: #1e1e1e;
    border: 1px solid #08ff67;
    border-radius: 40px;
}

*:not(body, html)::-webkit-scrollbar-track {
    background: #1E1E1E66;
    border-radius: 40px;
}

*:not(body, html)::-webkit-scrollbar-thumb {
    background-color: #08FF67;
    /* Green */
    border-radius: 40px;
    border: 4px solid transparent;
    background-clip: padding-box;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
    width: 14px;
    min-height: 10px;
    background: #1e1e1e;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
    background: #1e1e1e66;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
    background-color: #08ff67;
    border-radius: 40px;
}

/* Firefox ONLY */
@supports (-moz-appearance: none) {
    .bp-messages-custom-box #bp-message-thread-list {
        scrollbar-width: thin;
        /* Firefox */
        scrollbar-color: #2ecc71 transparent;
        /* Firefox: thumb | track */
    }
}