File size: 2,707 Bytes
d064c89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.feedback-link {
    display: inline-block;
    background-color: #077493; /* Adjusted color */
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Added */
}

.feedback-link:hover {
    background-color: #077493; /* Adjusted hover color */
}

.feedback-link[href^="mailto"] {
    color: white !important;
    text-decoration: none !important;
}

/* Style streamlit general text */
.description {
    font-size:18px !important;
    text-align: justify;
}

.title {
    font-size: 35px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    color: #333;  /* A modern dark gray */
    display: flex;
    align-items: center;
}


/* Style streamlit header with bold text  */
.header {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    color: #333;  /* A modern dark gray */
    display: flex;
    align-items: center;
}


.stMultiSelect > div > div > div {
    font-size: 15px;
}

/* Style columns */
[data-testid="column"] {
    border-radius: 15px;
       background-color: white;
       box-shadow: 0 0 10px #eee;
       border: 1px solid #ddd;
       padding: 1rem;;
} 
/* Style containers */
[data-testid="stVerticalBlock"] > [style*="flex-direction: column;"] > [data-testid="stVerticalBlock"] {
    border-radius: 15px;
       background-color: white;
       box-shadow: 0 0 10px #eee;
       border: 1px solid #ddd;
       padding: 1rem;;
}

.stTabs [data-baseweb="tab-list"] button [data-testid="stMarkdownContainer"] p {
    font-size:20px;
    }


    .footer {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        background-color: #eaeaec;
        color: black;
        text-align: left;
        padding: 10px 20px;
        font-size: 12px;
        box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
    }

    .footer h3 {
        margin: 0;
        padding-bottom: 5px;
        position: relative;
        font-size: 13px;
        font-weight: 100;
        display: inline-block;
    }

    .footer .content {
    margin-top: 10px;
    }

    .footer .logo {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 50px; /* Adjust logo size */
    height: auto;
    }

    .footer h3::after {
    content: "";
    display: block;
    width: 120%; /* Adjust to control line length */
    height: 2px;
    background-color: black; /* Adjust color as needed */
    position: absolute;
    bottom: 0;
    left: 0;


    .footer .logo {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 50px; /* Adjust logo size */
    height: auto;
}