style.css
style.css
--bg: #0e0f11;
--text: #eee;
--accent: #4eb980;
--input: #1e1e1e;
}
body {
margin: 0;
font-family: sans-serif;
background: var(--bg);
color: var(--text);
height: 100vh;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
height: 100%;
display: flex;
flex-direction: column;
}
.messages {
flex: 1;
overflow-y: auto;
padding: 10px;
border: 1px solid #333;
border-radius: 8px;
margin-bottom: 10px;
}
#msgForm {
display: flex;
gap: 10px;
}
#msgInput {
flex: 1;
padding: 10px;
border: none;
border-radius: 6px;
background: var(--input);
color: var(--text);
resize: none;
min-height: 40px;
}
button {
background: var(--accent);
border: none;
padding: 10px 20px;
border-radius: 6px;
cursor: pointer;
}
.message {
background: var(--input);
padding: 10px;
margin-bottom: 10px;
border-radius: 6px;
}