.chat-container {
position: absolute;
top: 0.5em;
right: 0.5em;
width: 30vw;
height: min-content;
font-size: 0.875rem; /* 14px */
line-height: 1.25rem; /* 20px */
font-weight: 500;
}
.chat-table {
height: 23vh;
display: block;
overflow: auto;
}
.chat-box {
appearance: none;
background: transparent;
color: var(--text);
padding: 0.675em 1em;
border: 1px solid var(--links);
border-radius: 0.25rem;
cursor: text;
width: 100%;
max-width: 100%;
}
.chat-box:focus {
outline: none;
background-color: var(--links-ultratransparent);
}
.message {
padding-top: 0;
padding-bottom: 0;
margin-top: 1px;
margin-bottom: 1px;
}
.server-message {
color: #facb61;
}
.server-error {
color: #ff2222;
}
.global-message {
color: #4de640;
}
.direct-message {
color: #599fbd;
}