File size: 854 Bytes
06070a9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
.gr-container {
    margin-top: 100px;
}
.chatbox {
    max-height: 500px;
    overflow-y: auto;
    resize: both;
}
.chat-message {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.agent {
    justify-content: flex-start;
}
.llm {
    justify-content: flex-end;
}
.speech-bubble {
    border-radius: 5px;
    padding: 2px;
    position: relative;
    display: inline-block;
    max-width: 100%;
}
.agent-bubble {
    background-color: #C3E0E5;
    color: #000;
}
.llm-bubble {
    background-color: #0C244A;
    color: #FFF;
}
.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.agent .avatar {
    margin-right: 10px;
}
.llm {
    flex-direction: row-reverse;
}
.llm .avatar {
    margin-left: 10px;
}
.timestamp {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    text-align: right;
}