File size: 959 Bytes
d07996d
 
 
 
 
a479ddf
d07996d
 
 
 
a479ddf
 
d07996d
 
 
 
a479ddf
d07996d
 
 
 
a479ddf
 
 
 
 
 
 
d07996d
 
 
a479ddf
d07996d
 
 
 
a479ddf
 
 
 
 
d07996d
 
a479ddf
d07996d
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
/* Custom CSS for Streamlit App */

/* Header Style */
header {
    background-color: #5072A7; /* A soothing shade of blue */
    color: white; /* Ensuring the text on the header is white for contrast */
}

/* Main Body Style */
body {
    font-family: Arial, sans-serif; /* Using a standard, readable font */
    color: #333333; /* Dark grey color for the main text */
}

/* Titles and Headings */
h1, h2, h3 {
    color: #e8ff1a; /* A darker shade of blue for headings */
}

/* Buttons */
button {
    background-color: #4CAF50; /* A green color for buttons */
    color: white;
    padding: 10px 20px;
    margin: 10px 0;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}

/* Footer Style */
footer {
    background-color: #333333; /* Dark footer for contrast */
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}