/* Terminal Output */
#terminal_output {
    p {
        margin-top: 0;
    }

    .highlight {
        background: var(--focus_color);
        color: var(--main_color);
    }

    .mono {
        font-family: monospace, monospace;
        font-size: 14px;
        font-weight: bold;
        word-wrap: break-word;
    }

    .command {
        color: var(--focus_color);
        text-decoration: none;
        margin-bottom: 0;
    }

    .more {
        white-space: pre;
        overflow-x: hidden;
    }

    .less {
        display: inline-block;
        white-space: pre;
    }

    @media screen and (max-width: 600px) {
        .less {
            visibility: hidden;
            display: none;
        }
    }
}
