/* Shared Overlay-Scrollbar (Design-System / #731, #736) */

.lf-osb-scroll {
    scrollbar-width: none;
}
.lf-osb-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.lf-osb {
    position: absolute;
    top: 0;
    right: 1px;
    bottom: 0;
    width: 6px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
}
.lf-osb-wrap.has-overlay-scrollbar:hover .lf-osb,
.lf-osb-wrap.is-osb-dragging .lf-osb {
    opacity: 1;
    pointer-events: auto;
}
.lf-osb-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
    cursor: default;
    touch-action: none;
}
