File size: 1,055 Bytes
d496b6e
a4fa14c
 
 
 
 
d496b6e
 
a4fa14c
 
 
d496b6e
 
a4fa14c
 
 
 
 
d496b6e
 
a4fa14c
 
 
 
 
 
 
 
d496b6e
 
a4fa14c
 
 
 
 
 
 
 
 
d496b6e
 
a4fa14c
 
d496b6e
 
a4fa14c
 
 
 
 
 
d496b6e
 
a4fa14c
 
 
d496b6e
 
a4fa14c
 
 
d496b6e
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
60
61
62
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #f5f5f5;
}

h1 {
    color: #2d2d2d;
    text-align: center;
}

.chat-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#questionInput {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 16px;
    resize: vertical;
}

#sendButton {
    background: #007AFF;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

#sendButton:hover {
    background: #0056b3;
}

#responseContainer {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    min-height: 100px;
}

#status {
    color: #666;
    font-style: italic;
}

#response {
    margin-top: 12px;
    white-space: pre-wrap;
}