.graph-ui {
    background: red;
    opacity: .1;
    position: absolute;
    FFoverflow-y: auto;
    FFoverflow-x: hidden;
    border: 4px solid #fff;
    padding: 10px;
    background-color: #f9f9f9;
    left: 0px;
    top: 0px;
    width: 200px;
    height: 100px;
    z-index:10;
}

#nodeArea {
    position: absolute;
    left:0px;
    top:0px;
    width: 100%;
    height: 100%;
    border: none;
    z-index:10;
    display:block;
    pointer-events: none;
}

.nodeTitle {
    Fposition: absolute;
    display:block;
    left:0px;
    top:0px;
    width: 100%;
    height: 8px;
    border: none;
    z-index:10;
    pointer-events: none;
    background:red;
}

.node {
    border: 1px solid #808080;
    position: absolute;
    padding: 12px;
    background: #3d3d3d;
    color:#fcfc41;
    cursor: move;
    z-index:10;
    pointer-events: all;
    
    overflow-x: auto;
    overflow-y: auto;
    resize: both;


    white-space: pre;  /* Preserve whitespace and line breaks */
    tab-size: 2;  /* Set tab size to 4 spaces */
    caret-color: #ffffff;  /* Set the caret (cursor) color */
    overflow-wrap: break-word;  /* Handle long words or code lines */
    word-wrap: break-word;  /* Ensure compatibility across browsers */
    
    font-size: 12px;
    opacity:.1;
        
    transition: opacity 0.5s ease;
}

.node:hover{
    opacity:.7
}

svg {
    z-index:9;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Style for Webkit browsers like Chrome, Safari */
div::-webkit-scrollbar {
    width: 12px; /* Width of the vertical scrollbar */
}

div::-webkit-scrollbar-track {
    background: #f1f1f166; /* Color of the scrollbar track */
}

div::-webkit-scrollbar-thumb {
    background: #5ce1ffa3; /* Color of the scrollbar thumb */
}

div::-webkit-scrollbar-thumb:hover {
    background: #d3ff2b; /* Color when hovered */
}

/* Firefox */
div {
    scrollbar-width: thin; /* 'auto' or 'thin' */
    scrollbar-color: #62faff8a #84848466; /* thumb and track color */
}