.org-scroll-wrapper {
    width: 100%;
    height: 100%;
    min-width: 600px;
    min-height: 600px;
    max-width: 800px;
    max-height: 800px;
    border: 2px solid var(--border-color);
    box-shadow: 2px 5px 20px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.org-scroll-wrapper:active,
.org-container:active {
    cursor: grabbing;
}

.org-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.org-scroll-wrapper:fullscreen {
    max-width: none;
    max-height: none;
    width: 100vw;
    height: 100vh;
    background: white;
}