File size: 1,037 Bytes
012b165
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Global Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Chat Message Styling */
.chat-message {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.chat-message.assistant {
    border-left: 4px solid #007bff;
}

.chat-message.user {
    border-left: 4px solid #28a745;
    background-color: #e9f7ef;
}

/* Audio Recorder Button */
.audio-recorder {
    margin: 1rem auto;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.audio-recorder:hover {
    background-color: #0056b3;
}

/* Footer */
.footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
}

.footer-text {
    font-size: 0.9rem;
    color: #666;
}