div#stats {
    position: fixed;
    top: 40px;
    right: 0px;
    z-index: 500;
    width: max(400px, 10vw, 10vh);
    height: 80px;
    opacity: 0.8;
    user-select: none;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

div#stats canvas {
    display: inline-block !important;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

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

::-webkit-scrollbar-thumb {
    background-color: #444449;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #838391;
}

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

.custom-scrollbar-container::-webkit-scrollbar {
    display: none;
}


@supports (scrollbar-color: red blue) {
    * {
        scrollbar-color: #444449 transparent;
        scrollbar-width: think;
    }
}
