File size: 864 Bytes
082d9d1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
55
56
57
58
59
/* Basic styling for the coder application */

.left_header {
    text-align: center;
    margin-bottom: 20px;
}

.left_header h1 {
    margin-top: 10px;
    color: #333;
}

.right_panel {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

.render_header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.header_btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.header_btn:nth-child(2) {
    background: #ffbd2e;
}

.header_btn:nth-child(3) {
    background: #27ca3f;
}

.right_content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 800px;
}

.html_content {
    width: 100%;
    height: 920px;
    border: none;
    border-radius: 8px;
    background: white;
}

.history_chatbot {
    max-height: 960px;
    overflow-y: auto;
}