.landing-trees
{
    flex:1;
    display: flex;
    flex-direction: column;
    max-width: 650px;
}

.node-root {
    padding-bottom: 2em;
}
.node-root + .node-root {
    border-top: 1px solid black;
    padding-top: 2em;
}

.node {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.node:not(.node-root) {
    padding-left: 1.5em;
}

.nodes-container {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.node-header
{
    border: 1px solid black;
    padding: 0.5em;
    display: flex;
    flex-direction: row;
    gap: 0.3em;
}

.node-header > .node-name {
    flex-grow: 1;
    padding-right: 0.5em;
}
.node-header .node-button {
    display: flex;
    justify-content: center;
    align-content: center;
    padding-left: 0.3em;
    padding-right: 0.3em;
    transition: 0.3s ease;
}
.node-header .node-button:not(.disabled):hover {
    color: var(--primary);
    cursor: pointer;
}

.node-header .node-button > i {
    display:flex;
    flex-direction:column;
    justify-content: center;
}
