html, body {
    background-color: #222;
    color: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

#container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 60px 1fr;
    width: 100%;
    height: 100%;
}

#top-bar {
    grid-column: 1 / 3;
    grid-row: 1;
    background-color: #292c33;
    color: #fff;
    padding: 0.5em;
    display: flex;
    flex-direction: row;
}

#title {
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5em;
}

#status {
    width: 50px;
    padding: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#code-panel {
    grid-row: 2;
    grid-column: 1;
    background-color: #333;
    color: #fff;
    padding: 0px;
    resize: horizontal;
    overflow: auto;
}

#canvas-panel {
    grid-row: 2;
    grid-column: 2;
    background-color: #1c1e24;
    color: #fff;
    padding: 0px;
    overflow: auto;
    resize: horizontal;
}

#cy {
    width: 100%;
    height: 100%;
}

#editor {
    width: 100%;
    height: 100%;
}


.node-gear-label {
    position: absolute;
    font-family: "DejaVu Sans Mono", Consolas, Monaco, monospace;
    color: #6094cf;
}

.dialsvg {
    position: absolute;
    transform: translate(-35px, -35px);
    z-index: -2;
}

.dialcircle {
    fill: #6094cf;
}

