body {
    border: 0;
    margin: 0;
    width:100vw;
    height: 100vh;
    font-family: sans-serif;
}
svg {
    width: 100%;
    height: 100%;
    display: block;
    background: black;
}
.nodedata {
    font-family: sans-serif;
    font-size: 0.8em;
    color: white;
    padding: 1em;
    border: 0px solid lime;
}
#side {
    background: black;
    color: white;
    border: 0px solid lime;
    position: relative;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}
#graph {
    background: black;
    color: white;
    border: 0px solid lime;
    position: relative;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}
.label {
    color: white;
}
.split {
    display: flex;
    flex-direction: row;
    height: 100%;
    position: relative;
}
.vsplit {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.gutter {
    background-color: #333;
    background-repeat: no-repeat;
    background-position: 50%;
}
.gutter.gutter-horizontal {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
    cursor: col-resize;
}
.gutter.gutter-vertical {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=');
    cursor: row-resize;
}
#nodelist {
    font-size: 0.9em;
    padding-left: 2em;
    overflow: scroll;
    height: 100%;
    position: relative;
}
#ainblist {
    font-size: 0.9em;
    padding-left: 2em;
    overflow: scroll;
    height: 100%;
    position: relative;
}
#nodelist0 {
    position: relative;
    height: 100%;
    display: flex;
    flex-flow: column
}
#ainbfiles {
    position: relative;
    height: 100%;
    display: flex;
    flex-flow: column
}
.search {
    background: black;
    color: white;
    margin:0.3em;
    margin-left: 1em;
    margin-top: 0.3em;
}
.listitem {
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    cursor: pointer;
}
.listitem:hover {
    cursor: pointer;
    color: lightblue;
}
#title {
    position: absolute;
    bottom: 10px;
    right: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0.3em;
    padding: 0.5em;
    z-index: 1000;
    color: rgba(255,255,255,0.4);
    width: 20ch;
}
a {
    color: darkgray;
}
.title {
    font-size: 1.2em;
}
.info {
    font-size: 0.7em;
}
.header {
    font-weight: bold;
    font-size: 1.25em;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    margin-bottom: 0.5em;
}
.section {
    font-weight: bold;
    font-size: 1.05em;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    margin-bottom: 0.1em;
    margin-top: 0.5em;
}
.item {
    margin-left: 1.5em;
}
.item::marker {
    color: rgb(180,255,180);
}
.typename {
    color: #bbb;
}
.typevalue {
    color: #bbb;
}
.nodelink {
    color: #bbb;
    cursor: pointer;
}
.part {
    margin-left: 1.5em;
    margin-top: 0.5em;
    font-weight: bold;
    color: rgba(255,255,255,0.9);
}
#raw {
    font-size: 0.8em;
}
#style {
    position: absolute;
    display: flex;
    flex-flow: column;
    bottom: 16px;
    right: 16px;
    visibility: hidden;
    gap: 3px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 0.3em;
    z-index: 3005;
    padding: 0.3em;
    background: rgba(0,0,0,0.66);
}
#styleshow {
    position: absolute;
    bottom: 5em;
    right: 0px;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 0.3em;
    z-index: 2000;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
ul {
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    padding-left: 1.5em;
}
.strike {
    text-decoration: line-through;
    color: #ccc;
}
