* {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    scroll-behavior: smooth;
    font-family: 'Courier New', Courier, monospace;
}

body {
    width: 100%;
}

.shell_host {
    color: rgb(0, 255, 85);
}

.shell_path {
    color: rgb(0, 187, 255);
}

.shell {
    width: 100vw;
    height: 100vh;
    background-color: rgb(0, 0, 0);
    padding-top: 5vh;
    padding-left: 1vw;
    font-size: large;
}

.editor {
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0);
    padding-top: 5vh;
    padding-left: 1vw;
    position: relative;
    box-sizing: border-box;
    overflow: scroll;
}

.editor_top_nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    color: black;
    background-color: white;
    font-size: 14px;
    margin-left: 0px;
    border-top: 1px solid #ccc;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 2px 8px;
}

.left {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.center {
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.right {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}




.editor_bottom_nav {
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    color: white;
    font-size: 14px;
    padding: 4px;
    margin-left: 2px;
    border-top: 1px solid #ccc;
}

.nano-key {
    margin-left: 200px;
}

.nano_shortcut_key {
    background-color: white;
    color: black !important;
}

.editor_confirm {
    background-color: white;
    width: 100%;
    color: black !important;
}

#editor_content {
    color: white;
}


.shell_command {
    color: rgb(0, 255, 0);
}
.shell_output {
    color: white;
}
.shell_error {
    color: white;
}

.typed-cursor {
    color: white;
}

.keyword {
    color: rgb(0, 255, 221);
    font-weight: bold;
}

.datatype {
    color: rgb(0, 183, 255);
    font-weight: bold;
}

.string {
    color: rgb(255, 162, 0);
}

.comment {
    color: rgb(0, 255, 145);
    font-style: italic;
}

.number {
    color: rgb(0, 255, 64);
}

.shell_input {
    border: none;
    outline: none;
    border-radius: 0;
    caret-color: white !important;
    font-size: large;
    background: black;
    color: rgb(0, 255, 0);
}