File size: 923 Bytes
d1da800
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Main title styling */
.main .block-container h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Subtitle styling */
.main .block-container h2 {
    color: #34495e;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Sidebar styling */
.sidebar .sidebar-content {
    background-color: #f8f9fa;
}

/* Button styling */
.stButton>button {
    width: 100%;
    border-radius: 5px;
    height: 3em;
    margin: 0.5em 0;
    background-color: #3498db;
    color: white;
    border: none;
}

.stButton>button:hover {
    background-color: #2980b9;
}

/* Progress bar styling */
.stProgress > div > div {
    background-color: #2ecc71;
}

/* Info box styling */
.stAlert {
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem 0;
}

/* Code block styling */
.stCodeBlock {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem 0;
}