* {
    border-radius: 0px !important;
}

body, html {
    padding: 0px;
    margin: 0px;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

body {
    font-family: Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#left-side {
    position: absolute;
    width: 700px;
    height: 100vh;
    border-right: 1px solid rgba(0,0,0,0.1);
}

#editor {
    height: calc(100vh - 141px); 
    width: 550px;
}

#right-side {
    position: absolute;
    right: 0px;
    width: calc(100vw - 700px);
    height: 100vh;
    overflow: scroll;
}

.top-panel {
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.top-panel *,
.top-panel {
    font-size: 10px;
}

button {
    border: 1px solid grey;
}
button:hover {
    background: #ddd;
}
button:active {
    background: #eee;
}

.top-panel > div > button {
    width: 100%;
}

.top-message {
    columns: 2;
    font-family: monospace;
    height: 100px;
    overflow: auto;
    font-size: 8px;
    padding: 4px;
    white-space: pre-line;
    border: 1px solid rgba(0,0,0,0.1);
}

.top-options {
    display: grid;
    grid-template-columns: 120px 110px 110px 1fr 1fr 1fr;
}

#visjs-network {
    border: 1px solid rgba(0,0,0,0.1);
}
#gojs-network {
    border: 1px solid rgba(0,0,0,0.1);
}

#saved-scheme-select {
    height: 600px;
}

#left-side {
    display: grid;
    grid-template-columns: 150px 1fr;
    height: 800px;
}

#files-panel * {
    font-size: 10px;
}

#files-panel {
    font-size: 10px;
    display: grid;
    grid-template-rows: 30px 50px 90px 30px auto;
}

#file-info-panel {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

ul {
    margin: 0px;
    padding: 5px;
}

#editor-panel {
    display: grid;
    grid-template-rows: auto 300px;
}

#types-panel {
    border-top: 1px solid rgba(0,0,0,0.1);
}

#graph-iframe {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.1);
}