Spaces:
Running
Running
neerajkalyank
commited on
Commit
•
5b8133f
1
Parent(s):
bbf8b65
Update app.py
Browse files
app.py
CHANGED
@@ -232,6 +232,8 @@ textarea {
|
|
232 |
cursor: pointer;
|
233 |
transition: color 0.3s, transform 0.3s;
|
234 |
font-weight: 500;
|
|
|
|
|
235 |
}
|
236 |
|
237 |
/* Hover effect on tabs */
|
@@ -239,13 +241,15 @@ textarea {
|
|
239 |
color: #FFCA28; /* Bright yellow on hover */
|
240 |
}
|
241 |
|
242 |
-
/* Active tab styling */
|
243 |
.nav-tabs .nav-item.active {
|
244 |
-
color: #
|
245 |
-
border
|
246 |
font-weight: 700;
|
|
|
247 |
}
|
248 |
|
|
|
249 |
/* Billing Output */
|
250 |
#billing_output {
|
251 |
background: rgba(40, 40, 40, 0.9);
|
|
|
232 |
cursor: pointer;
|
233 |
transition: color 0.3s, transform 0.3s;
|
234 |
font-weight: 500;
|
235 |
+
border: 2px solid transparent; /* Transparent border for inactive tabs */
|
236 |
+
border-radius: 5px; /* Rounded edges */
|
237 |
}
|
238 |
|
239 |
/* Hover effect on tabs */
|
|
|
241 |
color: #FFCA28; /* Bright yellow on hover */
|
242 |
}
|
243 |
|
244 |
+
/* Active tab styling with green border */
|
245 |
.nav-tabs .nav-item.active {
|
246 |
+
color: #00FF00; /* Green color for active tab text */
|
247 |
+
border: 2px solid #00FF00; /* Green border for active tab */
|
248 |
font-weight: 700;
|
249 |
+
background-color: rgba(0, 255, 0, 0.1); /* Light green background for active tab */
|
250 |
}
|
251 |
|
252 |
+
|
253 |
/* Billing Output */
|
254 |
#billing_output {
|
255 |
background: rgba(40, 40, 40, 0.9);
|