LLMChat.css•1.65 kB
/* Layout container */
.chat-wrapper {
max-width: 900px;
margin: 3rem auto;
padding: 2rem;
border-radius: 16px;
background: linear-gradient(to bottom right, #ffffff, #f3f8ff);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
font-family: 'Segoe UI', sans-serif;
}
/* Title */
.chat-title {
text-align: center;
font-size: 2rem;
font-weight: 600;
color: #222;
margin-bottom: 1.5rem;
}
/* Message history window */
.chat-window {
height: 450px;
overflow-y: auto;
padding: 1.25rem;
background: #f8faff;
border-radius: 12px;
border: 1px solid #e0e0e0;
margin-bottom: 1rem;
scrollbar-width: thin;
scrollbar-color: #ccc transparent;
}
.chat-window::-webkit-scrollbar {
width: 8px;
}
.chat-window::-webkit-scrollbar-thumb {
background-color: #ccc;
border-radius: 8px;
}
/* Chat bubble wrapper */
.chat-bubble {
display: flex;
align-items: flex-start;
margin-bottom: 1.2rem;
}
.chat-bubble.user {
flex-direction: row-reverse;
}
.chat-bubble .avatar {
font-size: 1.75rem;
margin: 0 0.75rem;
user-select: none;
}
/* Bubble message box */
.chat-bubble .message {
background: #ebf3ff;
padding: 0.9rem 1.2rem;
border-radius: 16px;
max-width: 75%;
white-space: pre-wrap;
font-size: 0.95rem;
line-height: 1.5;
color: #333;
border: 1px solid #d6e4f0;
}
.chat-bubble.user .message {
background: #d1ffe7;
border: 1px solid #b6f2d6;
text-align: left;
}
/* Input box */
.chat-input {
width: 100%;
font-size: 1rem;
padding: 1rem;
border-radius: 10px;
border: 1px solid #cfcfcf;
outline: none;
resize: none;
transition: border 0.2s;
margin-bottom: 0.75rem;
}