body {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    color: white;
}

body > #editable-side #toolbar-wrap {
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    padding: 10px 10px;
    position: fixed;
    z-index: 998;

    width: 100%;
    background: black;
    border-bottom: 1px solid white;
    height: 41px;
    overflow-x: auto;
    scrollbar-width: none;
}

body > #editable-side #toolbar-wrap #toolbar-2 {
    display: flex;
    gap: 10px;
}

body > #editable-side #tools,
body > #editable-side #toolbar {
    display: flex;
    gap: 5px;
}

body > #editable-side #app {
    background: #272630;
    border-right: 2px solid #000008;
    box-sizing: border-box;
    padding: 15px 15px;
    min-width: 400px;
    font-family: sans-serif;
    position: relative;
    z-index: 997;
}

body > #editable-side #editor #preview {
    width: 100%;
    padding-right: 10px;
}

body > #editable-side #editor {
    display: flex;
    gap: 10px;
    min-height: 100vh;
    padding-top: 41px;
    box-sizing: border-box;
}

body > #editable-side #detail-panel {
    background: #00000040;
}

a {
    color: #ff9ec0;
}

input[type="button"],
button {
    padding: 5px 5px;
    background: #6a8aac;
    border: 1px solid #88a3d8;
    cursor: pointer;
    color: white;
}

#toolbar-wrap button {
    padding: 2px 5px;
}

body > #editable-side {
    padding-bottom: 57px;
}

body > #tools {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    display: block;
    padding: 15px 15px;
    background: black;
    border-top: 1px solid white;
}

.row-item {
    cursor: pointer;
    padding-top: 5px;
    padding-bottom: 5px;
    background: #1a1a20;
    border-bottom: 1px solid #393d42;
}

.row-item:hover {
    background: #2b2b34;
}

.row-item.tree-row-selected {
    background: #444455;
}

.node-edit-inline label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 4px;
}

.node-edit-inline input,
.node-edit-inline textarea,
.node-edit-inline select {
  font-size: 13px;
  padding: 2px 4px;
}

.attr-row,
.style-row {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 2px;
}

.attr-row input,
.style-row input {
  flex: 1;
}

.ne-section {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid #555;
}
