/* === EchoSphere Terminal Styling === */

body {
    background-color: #000000;
    color: #00ff66;
    font-family: monospace;
}

/* output area */
#messagewindow {
    color: #00ff66;
    font-family: monospace;
    font-size: 18px;
    line-height: 1.45;
}

/* === Output window (ALL game text) === */

#messagewindow {
    background-color: #000000;
    font-family: monospace;
    font-size: 18px;
    line-height: 1.45;
}

/* Force everything inside to use terminal font but NOT override colors */
#messagewindow span,
#messagewindow div {
    font-family: monospace !important;
    font-size: 18px !important;
    line-height: 1.45 !important;
}
/* input field at bottom */
input,
textarea {
    caret-color: #00ff66;
    color: #00ff66;
    background-color: #000000;
    font-family: monospace;
    font-size: 18px;
}
