     /* ================= VARIABLES & THEME SETUP ================= */
        :root {
            /* Light Mode - EXACTLY LIKE DASHBOARD */
            --primary: #00aaff;
            --primary-dark: #008ecc;
            --primary-light: #e0f2fe;
            --bg-body: #f8faff;
            --bg-card: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            --sidebar-width: 260px;
            --header-height: 70px;
            --nav-height: 70px;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --purple: #8b5cf6;
        }

        /* Dark Mode Override - EXACTLY LIKE DASHBOARD */
        body.dark-mode {
            --primary: #53d6ff;
            --primary-dark: #00aaff;
            --primary-light: #1e3a8a;
            --bg-body: #0f172a;
            --bg-card: #1e293b;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --border-color: #334155;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
        }

        body {
            background-color: var(--bg-body);
            color: var(--text-main);
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            padding-bottom: var(--nav-height);
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* ================= SIDEBAR - EXACT DASHBOARD STYLE ================= */
        .sidebar {
            width: var(--sidebar-width);
            height: 100vh;
            background: var(--bg-card);
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1200;
            border-right: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }
        
        /* Mobile: Hidden by default */
        @media (max-width: 768px) {
            .sidebar { 
                transform: translateX(-100%); 
                width: 280px; 
            }
            .sidebar.active { 
                transform: translateX(0); 
                box-shadow: 0 0 50px rgba(0,0,0,0.5); 
            }
        }

        /* Sidebar Overlay */
        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            backdrop-filter: blur(3px);
        }
        
        .sidebar-overlay.active {
            display: block;
        }

        .brand {
            height: var(--header-height);
            display: flex;
            align-items: center;
            padding: 0 24px;
            border-bottom: 1px solid var(--border-color);
            flex-shrink: 0;
        }

        .brand-logo {
            width: 45px;
            height: 45px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .brand-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .brand-text {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
        }

        .sidebar-menu {
            padding: 20px 0;
            flex: 1;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .sidebar-menu::-webkit-scrollbar {
            width: 6px;
        }

        .sidebar-menu::-webkit-scrollbar-track {
            background: transparent;
        }

        .sidebar-menu::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 3px;
        }

        .sidebar-menu::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }

        .menu-item {
            padding: 12px 24px;
            display: flex;
            align-items: center;
            color: var(--text-muted);
            font-weight: 500;
            border-left: 4px solid transparent;
            margin-bottom: 2px;
            white-space: nowrap;
        }

        .menu-item i { 
            width: 25px; 
            font-size: 18px; 
            margin-right: 12px; 
            text-align: center;
        }

        .menu-item:hover, .menu-item.active {
            background: var(--primary-light);
            color: var(--primary);
            border-left-color: var(--primary);
        }

        .sidebar-footer { 
            padding: 20px; 
            border-top: 1px solid var(--border-color); 
            margin-top: auto; 
            flex-shrink: 0;
        }

        .logout-btn {
            width: 100%; padding: 12px; background: rgba(239, 68, 68, 0.1); color: #ef4444; border: none;
            border-radius: 8px; cursor: pointer; font-weight: 600; display: flex; align-items: center; justify-content: center;
            gap: 10px; transition: 0.2s;
        }
        .logout-btn:hover { background: #ef4444; color: white; }

        /* ================= MAIN CONTENT ================= */
        .main-content {
            margin-left: var(--sidebar-width);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            width: calc(100% - var(--sidebar-width));
            flex-grow: 1;
        }
        
        @media (max-width: 768px) {
            .main-content { margin-left: 0; width: 100%; }
        }

        /* Top Header */

        .header-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-logo-img {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            overflow: hidden;
        }

        .header-logo-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .header-brand-text {
            font-size: 23px;
            font-weight: 700;
            color: var(--primary);
        }
        .top-header {
            height: var(--header-height);
            background: var(--bg-card);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
            position: sticky;
            top: 0;
            z-index: 900;
            border-bottom: 1px solid var(--border-color);
            flex-shrink: 0;
        }

        .menu-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--text-main); }
        @media (max-width: 768px) { .menu-toggle { display: block; } }

        .header-right { 
            display: flex; 
            align-items: center; 
            gap: 20px; 
        }
        
        /* Notification Icon - EXACTLY LIKE DASHBOARD */
        .notif-btn {
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .notif-btn i {
            font-size: 22px;
            color: var(--text-main);
        }

        .notif-badge {
            position: absolute; 
            top: -8px; 
            right: -8px; 
            background: #ef4444; 
            color: white; 
            border-radius: 50%; 
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px; 
            font-weight: 600;
            border: 2px solid var(--bg-card);
            z-index: 100;
        }

        /* Dark Mode Toggle - EXACTLY LIKE DASHBOARD */
        .eye-toggle {
            background: var(--primary-light); 
            border: none; 
            color: var(--text-main);
            width: 40px; 
            height: 40px; 
            border-radius: 50%; 
            cursor: pointer;
            display: flex; 
            align-items: center; 
            justify-content: center;
            font-size: 18px;
            transition: 0.3s;
        }

        /* Container */
        .container {
            padding: 30px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* ================= PAGE HEADER ================= */
        .page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .page-title {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .page-title i {
            font-size: 28px;
            color: var(--primary);
            background: var(--primary-light);
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-title h1 {
            font-size: 24px;
            font-weight: 600;
            color: var(--primary);
        }

        .page-title p {
            color: var(--text-muted);
            font-size: 14px;
            margin-top: 5px;
        }

        /* Back Button */
        .back-btn {
            background: var(--bg-card);
            color: var(--text-main);
            border: 1px solid var(--border-color);
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
            font-size: 14px;
        }

        .back-btn:hover {
            background: var(--primary-light);
            color: var(--primary);
            border-color: var(--primary);
        }

        /* ================= PROFILE LAYOUT ================= */
        .profile-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        @media (max-width: 992px) {
            .profile-layout {
                grid-template-columns: 1fr;
            }
        }

        /* Profile Card */
        .profile-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .section-header h2 {
            font-size: 20px;
            color: var(--text-main);
        }

        /* User Info Display */
        .user-info-display {
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .info-item:last-child {
            border-bottom: none;
        }

        .info-label {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .info-value {
            font-weight: 600;
            color: var(--text-main);
        }

        .info-value.editable {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-value.editable:hover {
            color: var(--primary);
        }

        .edit-icon {
            font-size: 14px;
            color: var(--primary);
            opacity: 0.7;
        }

        .info-value.read-only {
            color: var(--text-muted);
            cursor: not-allowed;
        }

        /* Status Badges */
        .status-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
            border: 1px solid transparent;
        }

        .status-verified {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
            border-color: rgba(16, 185, 129, 0.2);
        }

        .status-unverified {
            background: rgba(245, 158, 11, 0.1);
            color: #f59e0b;
            border-color: rgba(245, 158, 11, 0.2);
        }

        /* Bank Accounts Section */
        .bank-accounts-section {
            margin-top: 30px;
        }

        .bank-account-item {
            background: var(--bg-body);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            border: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .bank-info h4 {
            font-size: 16px;
            margin-bottom: 5px;
            color: var(--text-main);
        }

        .bank-info p {
            font-size: 14px;
            color: var(--text-muted);
        }

        .bank-actions {
            display: flex;
            gap: 10px;
        }

        .bank-btn {
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: 0.2s;
        }

        .btn-edit {
            background: rgba(0, 170, 255, 0.1);
            color: var(--primary);
            border: 1px solid rgba(0, 170, 255, 0.2);
        }

        .btn-edit:hover {
            background: var(--primary);
            color: white;
        }

        .btn-remove {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.2);
        }

        .btn-remove:hover {
            background: #ef4444;
            color: white;
        }

        .add-bank-btn {
            width: 100%;
            padding: 15px;
            background: var(--bg-body);
            color: var(--primary);
            border: 2px dashed var(--border-color);
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: 0.3s;
            margin-top: 10px;
        }

        .add-bank-btn:hover {
            background: var(--primary-light);
            border-color: var(--primary);
        }

        /* ================= FORMS ================= */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-group input {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            background: var(--bg-body);
            color: var(--text-main);
            font-size: 16px;
            transition: 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.1);
        }

        .form-group input:disabled {
            background: rgba(100, 116, 139, 0.1);
            color: var(--text-muted);
            cursor: not-allowed;
        }

        /* Password Requirements */
        .password-requirements {
            background: var(--bg-body);
            border-radius: 8px;
            padding: 15px;
            margin-top: 10px;
            border: 1px solid var(--border-color);
        }

        .password-requirements h4 {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .requirement {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 5px;
            font-size: 12px;
            color: var(--text-muted);
        }

        .requirement.met {
            color: #10b981;
        }

        .requirement i {
            font-size: 10px;
        }

        /* Submit Buttons */
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
            font-size: 16px;
            width: 100%;
            justify-content: center;
            margin-top: 10px;
        }

        .submit-btn:hover:not(:disabled) {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 170, 255, 0.3);
        }

        .submit-btn:disabled {
            background: var(--text-muted);
            cursor: not-allowed;
            opacity: 0.7;
        }

        /* PIN Section */
        .pin-section {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .pin-input-container {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            justify-content: center;
        }

        .pin-input {
            width: 50px;
            height: 50px;
            text-align: center;
            font-size: 20px;
            font-weight: 600;
            border: 2px solid var(--border-color);
            border-radius: 10px;
            background: var(--bg-body);
            color: var(--text-main);
            transition: 0.3s;
        }

        .pin-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.1);
            outline: none;
        }

        .pin-input.filled {
            border-color: var(--success);
        }

        /* Note Box */
        .note-box {
            background: rgba(245, 158, 11, 0.1);
            border-left: 4px solid #f59e0b;
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .note-box h4 {
            color: #f59e0b;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .note-box p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.5;
        }

        /* Withdrawal Status Alert */
        .withdrawal-alert {
            background: rgba(239, 68, 68, 0.1);
            border-left: 4px solid #ef4444;
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .withdrawal-alert h4 {
            color: #ef4444;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .withdrawal-alert p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.5;
        }

        /* ================= TOAST NOTIFICATION ================= */
        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .toast {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 15px 20px;
            min-width: 300px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: slideInRight 0.3s ease;
            border-left: 5px solid var(--primary);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .toast::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 5px;
        }

        .toast.success { border-left-color: #10b981; }
        .toast.error { border-left-color: #ef4444; }
        .toast.info { border-left-color: var(--primary); }
        .toast.warning { border-left-color: #f59e0b; }

        .toast-icon {
            font-size: 20px;
        }

        .toast.success .toast-icon { color: #10b981; }
        .toast.error .toast-icon { color: #ef4444; }
        .toast.info .toast-icon { color: var(--primary); }
        .toast.warning .toast-icon { color: #f59e0b; }

        .toast-content {
            flex: 1;
        }

        .toast-content strong {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .toast-content p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }

        .toast-close {
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            font-size: 18px;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s;
        }

        .toast-close:hover {
            background: rgba(0,0,0,0.1);
            color: var(--text-main);
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* ================= MODALS ================= */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            backdrop-filter: blur(8px);
            animation: fadeIn 0.3s;
        }
        
        @keyframes fadeIn { 
            from {opacity:0;} 
            to {opacity:1;} 
        }
        
        .modal-content {
            background: var(--bg-card);
            color: var(--text-main);
            width: 90%;
            max-width: 500px;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: slideUp 0.3s;
            max-height: 90vh;
            overflow-y: auto;
            border: 1px solid var(--border-color);
        }
        
        @keyframes slideUp { 
            from {transform:translateY(30px) scale(0.95);} 
            to {transform:translateY(0) scale(1);} 
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-muted);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s;
        }
        
        .close-modal:hover {
            background: rgba(0,0,0,0.1);
            color: var(--text-main);
        }
        
        .btn-modal {
            background: var(--primary); 
            color: white;
            border: none; 
            padding: 12px 30px; 
            border-radius: 10px;
            font-size: 16px; 
            cursor: pointer; 
            margin-top: 25px; 
            width: 100%;
            font-weight: 600;
            transition: 0.2s;
        }
        
        .btn-modal:hover {
            background: var(--primary-dark);
        }

        /* ================= FOOTER ================= */
        
        
        
        
        .footer-links a {
            color: var(--text-muted);
            transition: color 0.3s;
            font-size: 14px;
            white-space: nowrap;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        
        
        
        
        .social-icon:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 768px) {
            .container {
                padding: 20px 15px;
            }
            
            .page-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .info-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            
            .bank-account-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .bank-actions {
                width: 100%;
                justify-content: flex-start;
            }
            
            .bank-btn {
                flex: 1;
                justify-content: center;
            }
            
            .pin-input-container {
                justify-content: center;
            }
            
            
        }

        @media (max-width: 480px) {
            
            
            
            
            .toast {
                min-width: 250px;
            }
        }

        /* Bottom Nav */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: var(--nav-height);
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
            padding: 0 20px;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-muted);
            padding: 8px 12px;
            border-radius: 10px;
            transition: 0.3s;
            flex: 1;
            max-width: 80px;
            text-decoration: none;
        }

        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; font-weight: 500; }

        .nav-item.active,
        .nav-item:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        /* Profile Header Card */
        .profile-header-card {
            background: linear-gradient(135deg, #00aaff, #0088cc);
            border-radius: var(--radius);
            padding: 40px 30px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 25px;
            box-shadow: 0 10px 30px rgba(0,170,255,0.3);
            position: relative;
            overflow: hidden;
        }

        body.dark-mode .profile-header-card {
            box-shadow: 0 10px 30px rgba(0,136,204,0.4);
        }

        .profile-header-card::before {
            content: '';
            position: absolute;
            top: -50px; right: -50px;
            width: 150px; height: 150px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .profile-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: #fff;
            backdrop-filter: blur(10px);
            border: 4px solid rgba(255,255,255,0.4);
            padding: 15px;
            z-index: 1;
            flex-shrink: 0;
        }

        .profile-avatar img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .profile-header-info {
            color: white;
            z-index: 1;
            flex: 1;
        }

        .profile-header-info h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: deepskyblue;
            border: 1.5px solid #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            backdrop-filter: blur(8px);
        }

        .verified-badge i {
            color: #fff;
        }

        @media (max-width: 768px) {
            .profile-header-card {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }
            .profile-avatar {
                width: 130px;
                height: 130px;
            }
            .profile-header-info h2 {
                font-size: 24px;
                flex-direction: column;
            }
        }

        /* Status Badge */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        .status-badge.activated {
            background: rgba(16,185,129,0.15);
            border: 1.5px solid rgba(16,185,129,0.5);
            color: var(--success);
        }

        .status-badge.activated i {
            color: var(--success);
        }

        .status-badge.inactive {
            background: rgba(239,68,68,0.15);
            border: 1.5px solid rgba(239,68,68,0.5);
            color: var(--danger);
        }

        .status-badge.inactive i {
            color: var(--danger);
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active {
            display: flex;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .menu-group-label {
            padding: 16px 24px 5px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--text-muted);
            opacity: 0.55;
            pointer-events: none;
            user-select: none;
            list-style: none;
        }