.handle-data {
    width: 14px !important;
    height: 14px !important;
    border-radius: 8px !important;
    border: 2px solid currentColor !important;
    cursor: pointer !important;
    background-color: orange !important;
}

.handle-flow {
    width: 14px !important;
    height: 14px !important;
    border-radius: 8px !important;
    border: 2px solid currentColor !important;
    cursor: pointer !important;
    background-color: blue !important;
}

.handle-flow-mixed {
    width: 14px !important;
    height: 14px !important;
    border-radius: 8px !important;
    border: 2px solid currentColor !important;
    cursor: pointer !important;
    background: linear-gradient(to bottom, blue 50%, orange 50%) !important;
}


.node-title-name {
    display: inline-block;      /* Shrinks to fit content */
    background-color: rgba(255, 165, 0, 0.2); /* orange with 20% opacity */
    border: 1px solid grey;                  /* grey border */
    border-radius: 5px;                      /* rounded corners */
    padding: 5px;
    margin-left: 5px;
    padding-left: 10px !important/* optional padding */
}

.selected-message {
    border: 2px solid red !important;
    border-radius: 4px;
}