.scripts-ide {
    flex-direction: row!important;
    background-color: #1e1e1e;
}

.scripts-ide *::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0 #00000000;
    background-color: #00000000;
}

.scripts-ide *::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 0 #000000;
    border-radius: 10px;
    background-color: #1e1e1e;
}

.scripts-ide *::-webkit-scrollbar {
    width: 10px;
    background-color: #333333;
}

.scripts-ide .scripts-console {
    overflow-y: scroll;
    min-height: 200px;
    height: 200px;

    display: flex;
    flex-direction: column;

    color: white;
    background-color: #333333;
    font-size: small;

    margin: 3px;
    padding: 2px;
    flex: 0 0 auto;
}

.scripts-ide .editor-wrapper {
    display: flex; flex: 1 1 auto;
    background-color: #1e1e1e;
    padding: 5px 1px 1px 1px;
    min-width: 0;
    min-height: 0;
}

.scripts-ide monaco {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    background-color: #1e1e1e;
}

.scripts-ide .panel-wrapper {
    color: white;
    margin: 3px;
    padding: 2px;
    background-color: #333333;

    min-height: 0;
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
}

.scripts-ide .shortcut {
    cursor: pointer;
}

.scripts-ide .shortcut:hover {
    color: white !important;
}

.scripts-ide ide-panel {
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
    justify-content: stretch;
    min-height: 0;
    padding-bottom: 15px
}

.scripts-ide ide-panel:last-child {
    padding-bottom: 0;
}

.scripts-ide ide-panel .panel-title {
    margin-bottom: 5px;
    font-weight: bold;
    display: flex;
    padding: 3px 15px 3px 15px;
    background-color: #444444
}

.scripts-ide ide-panel .explorer {
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.scripts-ide ide-panel .explorer > ul {
    min-height: 0;
    min-width: 0;
    overflow-y: scroll;
    flex: 1 1 auto;
}

.scripts-ide ide-panel .explorer li {
    color: white;
    font-size: smaller;
    padding: 4px 8px 4px 8px;
    background-color: #00000000;
    cursor: pointer;
}

.scripts-ide ide-panel .explorer li:hover {
    color: white !important;
    background-color: #ffffff20;
}

.scripts-ide .code {
    font-family: monospace;
}

.scripts-ide .console-error {
    color: red;
}