.node-controllable {
    display: flex;
    gap: 5px;
    margin: 5px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.node-controllable>input {
    flex: 3;
}

.node-controllable>select {
    flex: 2;
}

.node-controllable>.close-btn {
    flex: 1;
    text-align: center;
    font-size: 30px;
    color: white;
    background: red;
    border-radius: 15px;
}

.node-controllable>.close-btn:hover {
    background: #f66;
}

.node .dynamic-plus-button {
    color: white;
    font-size: 30px;
    background: #13C857;
    border-radius: 15px;
    text-align: center;
    margin: 0 10px;
}

.node .dynamic-plus-button>i {
    padding: 5px;
}

.node .dynamic-plus-button:hover {
    background-color: #70ff70;
}