-
@@ -360,6 +409,36 @@
height: 100%;
transition: width 0.3s ease;
}
+
+/* Table progress bar styling */
+.progress-table {
+ background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
+ border-radius: 0.25rem;
+ border: 1px solid rgba(56, 189, 248, 0.3);
+ height: 6px;
+ overflow: hidden;
+ width: 100%;
+}
+
+.progress-bar-table-backend {
+ background: linear-gradient(135deg, #38BDF8 0%, #8B5CF6 100%);
+ height: 100%;
+ transition: width 0.3s ease;
+}
+
+/* Table styling */
+table {
+ border-collapse: separate;
+ border-spacing: 0;
+}
+
+tbody tr:last-child td:first-child {
+ border-bottom-left-radius: 1rem;
+}
+
+tbody tr:last-child td:last-child {
+ border-bottom-right-radius: 1rem;
+}