﻿.resizer,
.resizer * {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.resizer {
    position: relative;
    cursor: col-resize;
    touch-action: none;
    width: 4px;
    cursor: col-resize;
    touch-action: none;
    display:flex;
    justify-content: center;
}

    .resizer::before {
        content: "";
        position: absolute;
        left: -20px;
        right: -20px;
        top: 0;
        bottom: 0;
    }

    .resizer::after {
        content: "";
        width: 4px;
        height: 100%;
    }

.left-pane {
    flex-grow: 1;
    overflow:auto;
}

.right-pane {
    flex-shrink: 0;
}

    .right-pane.overlaymode {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 80%;
        max-width: 80%;
        z-index: 1045;
        background: var(--bs-body-bg, white);
        box-shadow: -4px 0 12px rgba(0,0,0,0.2);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease-in-out;
    }


