﻿/* Main CSS For Talker/Terminal View */
html,
body {
    margin: 0;
    padding: 0;
    height: 100% !important;
    background: #111;
    color: #DDD;
    font-family: Consolas, monospace;    
}

#terminalContainer {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    border: .5px solid white;
}

#terminalOutput {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    white-space: pre-wrap;
    border: .5px solid white;
    color: green;
    font-weight: 800;    
}

/* <connecting> */
#prompt {
    padding-left: 15px;
    color: cyan;
    font-weight: bold;    
}

/* Sender Input */
#messageInput {
    border: none;
    outline: none;
    padding: 15px;
    font-family: inherit;
    font-size: inherit;
    background: #111;
    color: white;
}


/* Base line formatting for the terminal */
.line {
    font-family: 'Consolas', 'Courier New', monospace;
    line-height: 1.3;
    word-break: break-all;
}

/* Category Color Palette */
.line-system {
    color: #00bcd4;
}
/* Cyan */
.line-chat {
    color: #4caf50;
}
/* Green */
.line-room {
    color: #ffeb3b;
}
/* Yellow */
.line-roomdescription {
    color: #cfd8dc;
}
/* Light Slate */
.line-user {
    color: #e91e63;
}
/* Pink */
.line-exit {
    color: #9c27b0;
}
/* Purple */
.line-error {
    color: #f44336;
}
/* Bright Red */
.line-prompt {
    color: #ff9800;
}
/* Orange */

/* Fallback for unknown send types */
.line-default {
    color: #ffffff;
}

