File size: 1,332 Bytes
ca83e22
 
 
 
 
 
 
a52f1c8
 
ca83e22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
63
64
65
66
67
68
69
70
71
* style.css */
body {
    background-color: #e8f5e9; /* Light green background */
    font-family: Arial, sans-serif;
}

.stFileUploader {
    background-color: #000000;
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
}

.stButton {
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.stButton:hover {
    background-color: #45a049;
}


.reportview-container .main .block-container{
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
}
.reportview-container .main {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    justify-content: flex-start;
    align-items: center;
}
.reportview-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.question {
    text-align: right;
    margin-right: 2rem;
    color: #2E86C1;
}
.answer {
    text-align: left;
    margin-left: 2rem;
    color: #28B463;
}
.qa-container {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 1rem 0;
}
.question-answer-divider {
    border-bottom: 1px solid #ddd;
    margin: 1rem 0;
    width: 80%;
}