.bindings-wrap .bindings{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    max-height: 255px;
    overflow-y: auto;
    width: fit-content;
    gap: 8px;
}

.bindings-wrap table {
    min-width: 200px;
}


.bindings-wrap td {
    max-height: 32px;
    width: 250px;
    padding: 0;
    padding-right: 8px;
    height: fit-content;
}

.bindings-wrap td p{
    font-size: 14px;
    height: 32px;
    margin: 0;
    white-space: nowrap;
    color: var(--color-foreground-black)
}

.bindings-wrap .wrap{
    --wrap-large-width: 250px;
}

.bindings-wrap .dropdown{
    width: fit-content;
    min-width: 100%;
}

.bindings-wrap .reorderable-row td {
    transition: padding-top 0.3s ease, padding-bottom 0.3s ease, opacity 0.3s ease;
}

.bindings-wrap .reorderable-row.hover-top td {
    padding-top: 18px;
}

.bindings-wrap .reorderable-row.hover-bottom td {
    padding-bottom: 18px;
}

.bindings-wrap .reorderable-row.dragging {
    opacity: 0.2;
}

.bindings-wrap .drag-handle {
    font-size: 18px;
    cursor: grab;
    user-select: none;
    opacity: 0.6;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bindings-wrap .drag-handle:hover {
    opacity: 1;
}

.bindings-wrap .drag-handle-column {
    width: 20px;
}

.bindings-wrap .buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.bindings-wrap .node-entry .edit-button {
    height: 20px;
    width: 30px;
    margin-left: -4px;
    --button-icon-size: 16px;
}

.bindings-wrap td .remove-button {
    height: 20px;
    width: 20px;
    --button-icon-size: 16px;
}

.node-editor .diagram-link foreignObject.diagram-link-label {
    width: 320px;
    height: 32px;
}

.node-editor .diagram-link foreignObject.diagram-link-label {
    width: 320px;
    height: 32px;
}

.material-icons.help-icon {
    font-size: 14px;
    opacity: 0.6;
    cursor: help;
    vertical-align: text-bottom;
}

.rz-handle {
    --rz-color: var(--selection-color, color-mix(in srgb, var(--color-primary, #2c6fbb) 70%, transparent));
    --rz-hit: 12px;
    --rz-edge: -5px;
    position: absolute;
    width: var(--rz-hit);
    height: var(--rz-hit);
    margin: calc(var(--rz-hit) / -2);
    z-index: 101;
    pointer-events: auto;
}

.rz-handle::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--rz-color);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.rz-n, .rz-s { left: 50%; cursor: ns-resize; }
.rz-e, .rz-w { top: 50%; cursor: ew-resize; }

.rz-n, .rz-nw, .rz-ne { top: var(--rz-edge); }
.rz-s, .rz-sw, .rz-se { bottom: var(--rz-edge); }
.rz-w, .rz-nw, .rz-sw { left: var(--rz-edge); }
.rz-e, .rz-ne, .rz-se { right: var(--rz-edge); }

.rz-nw, .rz-ne, .rz-sw, .rz-se { z-index: 102; }

.rz-nw, .rz-se { cursor: nwse-resize; }
.rz-ne, .rz-sw { cursor: nesw-resize; }

