
        body {
            margin: 0;
            font-family: 'Courier New', monospace;
            background: #1a1a1a;
            /* color: #00ffcc; */
            color: white;
            display: flex;
            height: 100vh;
            overflow: hidden;
        }
        pre {
            font-family: 'Courier New', monospace;
        }
        #container {
            /* font-family: 'Courier New', monospace; */
            display: flex;
            border: solid 1px white;
            width: 100%;
            height: 100%;
        }
        #terminal {
            border-right: solid 1px white;
            flex: 2;
            /* font-family: 'Courier New', monospace; */
            background: #000000;
            padding: 20px;
            overflow-y: auto;
            padding-bottom: 50px;
        }
        #sidebar {
            flex: 1;
            display: flex;
            flex-direction: column;
            background: #000000;
        }
        #commands {
            flex: 1;
            padding: 20px;
            margin: 10px 10px 5px 10px;
            border: solid 1px white;
        }
        #device-info {
            flex: 1;
            margin: 5px 10px 10px 10px;
            border: solid 1px white;
            padding: 20px;
        }
        #terminal-input {
            background: black;
            border: solid 1px white;
            color: white;
            font-size: 120%;
            width: 63%;
            font-family: inherit;
            padding: 5px;
            position: fixed;
            bottom: 10px;
        }
        .gauge {
            height: 10px;
            border: solid 1px white;
            background: #000000;
            border-radius: 1px;
            overflow: hidden;
            margin: 10px 0;
        }
        .gauge-fill {
            height: 100%;
            background: white;
            transition: width 0.5s;
        }
        .output {
            /* border: solid 1px white; */
            white-space: pre-wrap;
        }