-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (86 loc) · 1.63 KB
/
Copy pathstyle.css
File metadata and controls
101 lines (86 loc) · 1.63 KB
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
/* Main container styling */
.stApp {
background-color: #f5f7fa;
color: #333;
}
/* Sidebar styling */
.css-1d391kg {
background-color: #2c3e50;
color: white;
}
/* Button styling */
.stButton button {
background-color: #3498db;
color: white;
border-radius: 5px;
border: none;
padding: 8px 16px;
font-weight: 500;
transition: all 0.3s;
}
.stButton button:hover {
background-color: #2980b9;
color: white;
}
/* Card styling */
.recommendation-card {
background-color: white;
border-radius: 8px;
padding: 16px;
margin-bottom: 16px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.recommendation-card h4 {
color: #2c3e50;
margin-top: 0;
}
.action-buttons {
display: flex;
gap: 8px;
margin-top: 12px;
}
.action-button {
background-color: #3498db;
color: white;
border: none;
border-radius: 4px;
padding: 4px 8px;
font-size: 14px;
cursor: pointer;
}
.action-button:hover {
background-color: #2980b9;
}
/* Metric card styling */
.css-1xarl3l {
background-color: white;
border-radius: 8px;
padding: 16px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* Tab styling */
.css-1aquho2 {
background-color: white;
border-radius: 8px 8px 0 0;
}
/* Dataframe styling */
.dataframe {
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
display: none;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}