File size: 852 Bytes
fe8a467
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Base Theme */
body {
    background-color: #000000;
    color: #FFD700;
}
.stButton>button {
    background-color: #FFD700;
    color: #000000;
}
.stTextInput>div>div>input {
    color: #FFD700;
    border-color: #FFD700 !important;
}
.stSidebar {
    background-color: #1E1E1E;
}

/* Center the login container */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #1E1E1E;
    border-radius: 10px;
}
.login-container h2 {
    text-align: center;
}

/* Chat-like bubbles */
.chat-bubble {
    padding: 10px;
    border-radius: 10px;
    margin: 5px 0;
    max-width: 80%;
    word-wrap: break-word;
}
.user-bubble {
    background-color: #1E1E1E;
    border: 1px solid #FFD700;
    align-self: flex-start;
}
.bot-bubble {
    background-color: #FFD700;
    color: #000;
    align-self: flex-end;
}