Spaces:
Running
Running
neerajkalyank
commited on
Commit
•
c619372
1
Parent(s):
abbb0da
Update app.py
Browse files
app.py
CHANGED
@@ -153,6 +153,52 @@ input, select, textarea {
|
|
153 |
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
|
154 |
}
|
155 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
/* Tab Styling */
|
157 |
.nav-tabs {
|
158 |
display: flex;
|
|
|
153 |
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
|
154 |
}
|
155 |
|
156 |
+
/* Checkbox Group Styling */
|
157 |
+
.gr-checkbox-group label {
|
158 |
+
display: flex;
|
159 |
+
align-items: center;
|
160 |
+
padding: 10px 20px;
|
161 |
+
border: 2px solid #7fffd4;
|
162 |
+
border-radius: 8px;
|
163 |
+
transition: all 0.3s ease;
|
164 |
+
cursor: pointer;
|
165 |
+
color: #7fffd4;
|
166 |
+
background: rgba(245, 245, 245, 0.95);
|
167 |
+
box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15);
|
168 |
+
margin-right: 10px;
|
169 |
+
}
|
170 |
+
|
171 |
+
.gr-checkbox-group label:hover {
|
172 |
+
background: #e0f7fa;
|
173 |
+
color: #00bfa5;
|
174 |
+
}
|
175 |
+
|
176 |
+
/* Checkbox Styling */
|
177 |
+
.gr-checkbox-group input[type="checkbox"] {
|
178 |
+
appearance: none;
|
179 |
+
width: 20px;
|
180 |
+
height: 20px;
|
181 |
+
border: 2px solid #7fffd4;
|
182 |
+
border-radius: 4px;
|
183 |
+
margin-right: 10px;
|
184 |
+
transition: all 0.3s ease;
|
185 |
+
}
|
186 |
+
|
187 |
+
/* Selected Checkbox Styling */
|
188 |
+
.gr-checkbox-group input[type="checkbox"]:checked {
|
189 |
+
background-color: #ff8c00;
|
190 |
+
border-color: #ff8c00;
|
191 |
+
}
|
192 |
+
|
193 |
+
/* Simple checkmark indicator */
|
194 |
+
.gr-checkbox-group input[type="checkbox"]:checked::after {
|
195 |
+
content: "✓";
|
196 |
+
font-size: 14px;
|
197 |
+
color: #ffffff;
|
198 |
+
display: block;
|
199 |
+
text-align: center;
|
200 |
+
}
|
201 |
+
|
202 |
/* Tab Styling */
|
203 |
.nav-tabs {
|
204 |
display: flex;
|