/* * TCSS 2025 Professional Theme
 * Design Philosophy: Clean, Secure, Mobile-First.
 * Author: Nicesoft.pk
 */

:root {
    /* --- BRAND PALETTE (Aapke Colors) --- */
    --tcss-primary: rgb(36, 153, 42);       /* Growth Green */
    --tcss-primary-dark: rgb(28, 122, 33);  /* Darker Green for Hover */
    --tcss-primary-light: rgba(36, 153, 42, 0.1); /* Halka Green Backgrounds ke liye */
    
    --tcss-secondary: rgb(45, 69, 99);      /* Trust Blue */
    --tcss-secondary-dark: rgb(30, 48, 70);
    
    /* --- UI SURFACES (Glass & Backgrounds) --- */
    --tcss-bg: #f3f4f6;                     /* Page Background */
    --tcss-card-bg: rgba(255, 255, 255, 0.9); /* Glass Card */
    --tcss-glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --tcss-blur: blur(12px);                /* Dhundla Effect */
    
    /* --- SHADOWS (Soft & Modern) --- */
    --tcss-shadow: 0 10px 30px -5px rgba(45, 69, 99, 0.1);
    --tcss-shadow-hover: 0 20px 40px -5px rgba(45, 69, 99, 0.15);
    
    /* --- TEXT COLORS --- */
    --tcss-text-main: #1f2937;
    --tcss-text-muted: #6b7280;
    
    /* --- SIZES --- */
    --tcss-radius: 16px;                    /* Gol Konay (Rounded Corners) */
    --sidebar-width: 280px;
    --bottom-nav-height: 70px;
}

/* =========================================
   1. GLOBAL RESET & LAYOUT
   ========================================= */

.tcss-app-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--tcss-bg);
    color: var(--tcss-text-main);
    display: flex;
    min-height: 85vh; /* Screen ko bhar do */
    position: relative;
    border-radius: var(--tcss-radius);
    overflow: hidden;
    box-shadow: var(--tcss-shadow);
    margin: 20px 0;
}

/* =========================================
   2. SIDEBAR (Desktop Only)
   ========================================= */

.tcss-sidebar {
    width: var(--sidebar-width);
    background: var(--tcss-secondary);
    color: white;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

.tcss-brand h2 {
    color: white;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.tcss-brand small {
    color: rgba(255,255,255, 0.6);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

/* Navigation Menu Items */
.tcss-nav-menu {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tcss-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255,255,255, 0.7);
    text-decoration: none !important;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.tcss-menu-item:hover {
    background: rgba(255,255,255, 0.1);
    color: white;
    transform: translateX(5px); /* Halka sa right move */
}

.tcss-menu-item.active {
    background: var(--tcss-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(36, 153, 42, 0.4); /* Green Glow */
}

.tcss-menu-item .dashicons {
    font-size: 20px;
}

/* User Profile (Bottom of Sidebar) */
.tcss-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255, 0.1);
}

.tcss-avatar img {
    border-radius: 50%;
    border: 2px solid var(--tcss-primary);
}

.tcss-user-info strong {
    display: block;
    font-size: 14px;
}
.tcss-user-info small {
    color: var(--tcss-primary); /* Status Green */
}

/* =========================================
   3. MAIN CONTENT AREA
   ========================================= */

.tcss-main-content {
    flex: 1; /* Baqi jagah le lo */
    padding: 30px;
    overflow-y: auto;
    position: relative;
    padding-bottom: 100px; /* Mobile nav ke liye jagah */
}

/* Header Area */
.tcss-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tcss-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--tcss-secondary);
    margin: 0;
}

.tcss-refresh-btn {
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tcss-refresh-btn:hover {
    transform: rotate(180deg);
    border-color: var(--tcss-primary);
    color: var(--tcss-primary);
}

/* =========================================
   4. CARDS & GLASSMORPHISM
   ========================================= */

.tcss-glass-card {
    background: var(--tcss-card-bg);
    backdrop-filter: var(--tcss-blur);
    -webkit-backdrop-filter: var(--tcss-blur);
    border: var(--tcss-glass-border);
    border-radius: var(--tcss-radius);
    padding: 25px;
    box-shadow: var(--tcss-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 20px;
}

.tcss-glass-card:hover {
    transform: translateY(-5px); /* Upar utho */
    box-shadow: var(--tcss-shadow-hover);
}

/* Grid Layout for Services */
.tcss-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Service Card Specifics */
.service-card .card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.service-id {
    font-family: monospace;
    background: #e5e7eb;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.status-badge {
    font-size: 11px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.badge-pending { background: #fff7ed; color: #c2410c; }
.badge-in_progress { background: #eff6ff; color: #1d4ed8; }
.badge-completed { background: #ecfccb; color: #3f6212; }

.service-card h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: var(--tcss-secondary);
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* =========================================
   5. BUTTONS (Modern Gradients)
   ========================================= */

.tcss-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.tcss-btn-primary {
    background: var(--tcss-primary);
    color: white;
    box-shadow: 0 4px 10px rgba(36, 153, 42, 0.3);
}
.tcss-btn-primary:hover {
    background: var(--tcss-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(36, 153, 42, 0.4);
}

.tcss-btn-secondary {
    background: white;
    color: var(--tcss-secondary);
    border: 1px solid #e5e7eb;
}
.tcss-btn-secondary:hover {
    background: #f9fafb;
    border-color: var(--tcss-secondary);
}

.w-100 { width: 100%; justify-content: center; }

/* =========================================
   6. CHAT INTERFACE (WhatsApp Style)
   ========================================= */

.tcss-chat-window {
    background: #ffffff;
    border-radius: var(--tcss-radius);
    box-shadow: var(--tcss-shadow);
    display: flex;
    flex-direction: column;
    height: 600px;
    overflow: hidden;
}

.tcss-chat-messages {
    flex: 1;
    background: #efe7dd url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png'); /* WhatsApp pattern subtle */
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Bubbles */
.tcss-msg-bubble {
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.tcss-msg-bubble.own {
    align-self: flex-end;
    background: #d9fdd3; /* WhatsApp Green */
    color: #111;
    border-top-right-radius: 0;
}

.tcss-msg-bubble.them {
    align-self: flex-start;
    background: #ffffff;
    color: #111;
    border-top-left-radius: 0;
}

.msg-meta {
    text-align: right;
    font-size: 10px;
    color: #999;
    margin-top: 4px;
}

/* Chat Footer */
.tcss-chat-footer {
    padding: 10px 15px;
    background: #f0f2f5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tcss-chat-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    border-radius: 24px;
    outline: none;
    font-size: 15px;
}

.tcss-icon-btn {
    background: var(--tcss-primary);
    color: white;
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: 0.2s;
}
.tcss-icon-btn:hover { transform: scale(1.1); }

/* =========================================
   7. VAULT & FORMS
   ========================================= */

.tcss-form-group {
    margin-bottom: 20px;
}

.tcss-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--tcss-secondary);
    font-size: 13px;
}

.tcss-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.tcss-input:focus {
    border-color: var(--tcss-primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--tcss-primary-light);
}

/* =========================================
   8. MOBILE RESPONSIVE (The Magic)
   ========================================= */

.tcss-mobile-nav {
    display: none; /* Desktop par chupao */
}

@media (max-width: 768px) {
    /* Layout Changes */
    .tcss-sidebar { display: none; } /* Sidebar Gayab */
    .tcss-app-container { 
        flex-direction: column; 
        min-height: auto;
        border-radius: 0;
        margin: 0;
        box-shadow: none;
        background: transparent;
    }
    
    .tcss-main-content {
        padding: 15px;
        padding-bottom: 90px;
    }
    
    /* Mobile Bottom Nav (Instagram Style) */
    .tcss-mobile-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0; left: 0; width: 100%;
        background: white;
        padding: 10px 0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        z-index: 9999;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        backdrop-filter: blur(10px);
        background: rgba(255,255,255,0.95);
    }
    
    .tcss-mobile-item {
        text-align: center;
        color: #9ca3af;
        text-decoration: none;
        font-size: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        flex: 1;
    }
    
    .tcss-mobile-item .dashicons {
        font-size: 24px;
        margin-bottom: 2px;
    }
    
    .tcss-mobile-item.active {
        color: var(--tcss-primary);
        font-weight: 600;
    }
    
    /* Adjust Chat Height on Mobile */
    .tcss-chat-window {
        height: 75vh;
    }
}


/* --- EXISTING CODE (Jo pehle diya tha wo yahan hoga) --- */
/* ... (Global Reset, Sidebar, etc.) ... */


/* --- MODAL STYLES (Isay file ke end men paste karen) --- */

.tcss-modal {
    display: none; /* Default band rahega */
    position: fixed;
    z-index: 999999; /* Elementor (9999) se bohot upar */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6); /* Black overlay */
    backdrop-filter: blur(5px); /* Background dhundla */
    justify-content: center;
    align-items: center;
}

.tcss-modal.active {
    display: flex !important; /* JS class add karega to show hoga */
}

.tcss-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.tcss-close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #9ca3af;
    transition: 0.2s;
}
.tcss-close-modal:hover { color: #111; }

/* Role Selection Grid */
.tcss-role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.tcss-role-card {
    border: 2px solid #e5e7eb;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.tcss-role-card:hover {
    border-color: var(--tcss-primary);
    background: #f0fdf4;
    transform: translateY(-2px);
}

.tcss-role-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.tcss-header-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tcss-back-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
}
.tcss-back-btn:hover { color: #111; text-decoration: underline; }

/* --- CONSULTANT THEME (Blue) --- */
.tcss-sidebar.consultant-theme {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    box-shadow: 4px 0 15px rgba(30, 58, 138, 0.2);
}

.tcss-sidebar.consultant-theme .tcss-menu-item.active {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.tcss-sidebar.consultant-theme .tcss-user-info small {
    color: #93c5fd; 
}

/* ... Previous CSS ... */

/* --- PROGRESS BAR --- */
.tcss-progress-track {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    margin: 15px 0 5px 0;
    overflow: hidden;
}

.tcss-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669); /* Green Gradient */
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* --- PAYMENT BADGES & BUTTONS --- */
.card-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f3f4f6;
    padding-top: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.tcss-btn-pay {
    background: #ea580c; /* Orange Payment Button */
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    transition: 0.2s;
}
.tcss-btn-pay:hover {
    background: #c2410c;
    color: white;
}

.tcss-badge-paid {
    background: #dcfce7;
    color: #166534;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tcss-badge-unpaid {
    background: #fee2e2;
    color: #991b1b;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.expert-name {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4b5563;
    font-size: 14px;
}

/* Consultant Theme Fix */
.tcss-sidebar.consultant-theme {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    box-shadow: 4px 0 15px rgba(30, 58, 138, 0.2);
}
.tcss-sidebar.consultant-theme .tcss-menu-item.active {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.tcss-sidebar.consultant-theme .tcss-user-info small { color: #93c5fd; }


/* --- PROGRESS BAR STYLES --- */
.tcss-progress-track {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    margin: 12px 0 5px 0;
    overflow: hidden;
    position: relative;
    display: block !important;
}

.tcss-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #047857);
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* --- PAYMENT BUTTON STYLES --- */
.card-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.tcss-btn-pay {
    background-color: #f97316; /* Orange */
    color: white !important;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.tcss-btn-pay:hover { background-color: #c2410c; }

.tcss-badge-paid {
    background: #d1fae5; color: #065f46;
    padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight:bold;
    display: flex; align-items: center; gap: 4px;
}
.tcss-badge-unpaid {
    background: #fee2e2; color: #991b1b;
    padding: 4px 10px; border-radius: 20px; font-size: 12px;
}

/* --- SIDEBAR ACTIVE FIX --- */
.woocommerce-MyAccount-navigation-link.is-active a {
    background: #e0f2fe;
    color: #0c4a6e;
    font-weight: bold;
}

/* Consultant Theme Fix */
.tcss-sidebar.consultant-theme {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}
.tcss-sidebar.consultant-theme .tcss-menu-item.active {
    background: rgba(255,255,255,0.2);
}
.tcss-sidebar.consultant-theme .tcss-user-info small { color: #93c5fd; }

/* --- 1. HIDE DEFAULT WOOCOMMERCE SIDEBAR --- */
.woocommerce-MyAccount-navigation {
    display: none !important; /* Default sidebar gayab */
}
.woocommerce-MyAccount-content {
    width: 100% !important; /* Content full width */
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}
/* Theme compatibility fixes */
.entry-content, .woocommerce { max-width: 100% !important; }


/* --- 2. LAYOUT WRAPPER --- */
.tcss-dashboard-wrapper {
    display: flex;
    min-height: 600px;
    background: #f3f4f6; /* Light Grey BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', sans-serif;
}

/* --- 3. CUSTOM SIDEBAR --- */
.tcss-sidebar {
    width: 260px;
    background: #10b981; /* Green Default */
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex-shrink: 0;
}
.tcss-sidebar.consultant-theme {
    background: #1e3a8a; /* Blue for Consultant */
}

.tcss-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.tcss-brand h2 { margin: 0; color: white; font-size: 20px; }
.tcss-brand small { opacity: 0.8; font-size: 12px; }
.logo-icon { font-size: 30px; height: 30px; width: 30px; }

.tcss-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.tcss-user-info img { border-radius: 50%; border: 2px solid rgba(255,255,255,0.5); }

/* Navigation Links */
.tcss-nav-menu { display: flex; flex-direction: column; gap: 5px; }
.tcss-menu-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 15px;
    color: white; text-decoration: none;
    border-radius: 8px; transition: 0.2s;
    font-size: 14px;
}
.tcss-menu-item:hover { background: rgba(255,255,255,0.1); color: white; }
.tcss-menu-item.active { background: white; color: #059669; font-weight: 600; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }

.tcss-sidebar.consultant-theme .tcss-menu-item.active { color: #1e3a8a; }

.tcss-divider { height: 1px; background: rgba(255,255,255,0.2); margin: 10px 0; }
.tcss-logout-link:hover { background: rgba(255, 0, 0, 0.2); }

/* --- 4. MAIN CONTENT --- */
.tcss-main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #f9fafb;
}

.tcss-topbar {
    background: white;
    padding: 15px 30px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tcss-view-area { padding: 30px; overflow-y: auto; height: 100%; }

/* --- 5. CHAT STYLES (FAST & CLEAN) --- */
.tcss-chat-window {
    display: flex;
    flex-direction: column;
    height: 500px;
    background-color: #ffffff; /* Plain White BG */
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}
/* No Background Image */
.tcss-chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #f8fafc; /* Very light grey for message area */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tcss-msg-bubble {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 14px;
    position: relative;
    line-height: 1.4;
}

/* Colors */
.tcss-msg-bubble.own {
    background: #10b981; /* Green for me */
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}
.tcss-msg-bubble.them {
    background: #e5e7eb; /* Grey for them */
    color: #1f2937;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}
.tcss-sidebar.consultant-theme + .tcss-main-content .tcss-msg-bubble.own {
    background: #1e40af; /* Blue for Consultant messages */
}

.msg-meta { font-size: 10px; opacity: 0.8; margin-top: 4px; text-align: right; }

.tcss-chat-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}
.tcss-chat-input {
    flex-grow: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 15px;
}
.tcss-icon-btn {
    background: none; border: none; cursor: pointer; color: #555;
    font-size: 20px; padding: 5px;
}
.tcss-icon-btn:hover { color: #000; }

/* Grid & Cards */
.tcss-grid-layout { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.tcss-glass-card { background: white; padding: 20px; border-radius: 12px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); border: 1px solid #f0f0f0; }

/* Progress & Badges (Keep previous styles) */
.tcss-progress-track { width: 100%; height: 6px; background: #e0e0e0; border-radius: 10px; margin: 12px 0 5px 0; }
.tcss-progress-bar { height: 100%; background: #10b981; border-radius: 10px; transition: width 0.4s ease; }
.status-badge { padding: 4px 8px; border-radius: 4px; font-size: 11px; font-weight: bold; text-transform: uppercase; }
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-processing { background: #dbeafe; color: #1e40af; }
.badge-completed { background: #d1fae5; color: #065f46; }