.tool-form .editor-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 24px;
    padding: 0;
}

.tool-form .editor-toolbar .fullscreen-img {
    width: 22px;
    height: 22px;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 6px;
    float: right;
    opacity: 0.75;
}

.tool-form.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 16px 24px;
    overflow: hidden;
}

.tool-form.fullscreen .editor-toolbar {
    order: 0;
    flex-shrink: 0;
}

.tool-form.fullscreen .form-btn {
    order: 1;
    flex-shrink: 0;
    justify-content: center;
}

.tool-form.fullscreen .form-field {
    order: 2;
    flex: 1;
    min-height: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.tool-form.fullscreen .tool-result {
    order: 3;
    flex-shrink: 0;
}

.tool-form.fullscreen #container {
    flex: 1;
    height: auto !important;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.tool-form.fullscreen #container.json-editor-split {
    flex-direction: row;
    width: 100%;
}

.tool-form.fullscreen .json-editor-split {
    height: 100%;
}

.tool-form.fullscreen .json-editor-panel .wd-editor,
.tool-form.fullscreen .json-editor-panel .output-panel {
    flex: 1;
    height: 100% !important;
    min-height: 0;
}

.tool-form.fullscreen .wd-editor {
    height: 100% !important;
    flex: 1;
    min-height: 0;
}
