
        .bc-container {
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            width: 100%;
            box-sizing: border-box;
            min-height: 100vh;
        }

        .bc-card {
            background: rgba(30, 41, 59, 0.45);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 32px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }
        
        .bc-card:hover {
            border-color: rgba(243, 186, 47, 0.35);
            box-shadow: 0 35px 60px -10px rgba(243, 186, 47, 0.1), 0 20px 40px -15px rgba(0, 0, 0, 0.6);
            transform: translateY(-2px);
        }

        /* Subtle scanline grid inside cards to look premium and high-tech */
        .bc-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(rgba(255,255,255,0.003) 50%, rgba(0,0,0,0.003) 50%), linear-gradient(90deg, rgba(255,255,255,0.003) 50%, rgba(0,0,0,0.003) 50%);
            background-size: 4px 4px;
            pointer-events: none;
            z-index: 1;
        }

        .bc-header {
            margin-bottom: 20px;
        }

        .bc-header h1 {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 6px;
            color: #f3ba2f;
            text-shadow: 0 0 15px rgba(243, 186, 47, 0.25);
            letter-spacing: -0.5px;
        }

        .bc-header p {
            color: #94a3b8;
            font-size: 14px;
        }

        .bc-composer-section {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 24px;
            width: 100%;
        }

        @media (max-width: 1200px) {
            .bc-composer-section {
                grid-template-columns: 1fr;
            }
        }

        .bc-textarea {
            width: 100%;
            min-height: 200px;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            color: #f8fafc;
            padding: 18px;
            font-family: inherit;
            font-size: 15px;
            resize: vertical;
            line-height: 1.6;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .bc-textarea:focus {
            outline: none;
            border-color: #f3ba2f;
            box-shadow: 0 0 20px rgba(243, 186, 47, 0.2);
            background: rgba(15, 23, 42, 0.8);
        }

        .bc-vars {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 12px;
            width: 100%;
        }

        .bc-var-btn {
            background: rgba(243, 186, 47, 0.08);
            color: #f3ba2f;
            border: 1px solid rgba(243, 186, 47, 0.25);
            padding: 8px 18px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            margin-bottom: 5px;
        }

        .bc-var-btn:hover {
            background: linear-gradient(135deg, rgba(243, 186, 47, 0.2), rgba(243, 186, 47, 0.3));
            border-color: #f3ba2f;
            box-shadow: 0 0 15px rgba(243, 186, 47, 0.25);
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            .bc-container {
                padding: 15px;
                gap: 15px;
            }
            .bc-card {
                padding: 24px;
            }
            .bc-var-btn {
                padding: 6px 12px;
                font-size: 12px;
            }
            .bc-composer-section {
                gap: 15px;
            }
        }

        .bc-filter-item {
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .bc-filter-label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: #94a3b8;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .bc-select {
            width: 100%;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #f8fafc;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f3ba2f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
        }

        .bc-select:focus {
            outline: none;
            border-color: #f3ba2f;
            box-shadow: 0 0 20px rgba(243, 186, 79, 0.25);
        }

        .bc-input {
            width: 100%;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #f8fafc;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 14px;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .bc-input:focus {
            outline: none;
            border-color: #f3ba2f;
            box-shadow: 0 0 15px rgba(243, 186, 47, 0.2);
        }

        .bc-odp-grid {
            max-height: 160px;
            overflow-y: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 16px;
            background: rgba(15, 23, 42, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
        }

        @media (max-width: 480px) {
            .bc-odp-grid {
                grid-template-columns: 1fr;
                gap: 8px;
                padding: 10px;
            }
        }

        .bc-odp-grid::-webkit-scrollbar {
            width: 4px;
        }
        .bc-odp-grid::-webkit-scrollbar-thumb {
            background: rgba(243, 186, 47, 0.2);
            border-radius: 2px;
        }

        .bc-odp-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 600;
            color: #e2e8f0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .bc-odp-checkbox:hover {
            color: #f3ba2f;
        }
        .bc-odp-checkbox input[type="radio"], .bc-odp-checkbox input[type="checkbox"] {
            accent-color: #f3ba2f;
            cursor: pointer;
        }

        /* Target Summary Dashboard Widgets */
        .bc-summary-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            margin-top: 15px;
            margin-bottom: 20px;
        }
        .bc-summary-widget {
            background: rgba(15, 23, 42, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
        }
        .bc-summary-widget:hover {
            background: rgba(15, 23, 42, 0.6);
            border-color: rgba(243, 186, 47, 0.2);
        }
        .bc-summary-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }
        .bc-summary-icon.target {
            background: rgba(243, 186, 47, 0.15);
            color: #f3ba2f;
            border: 1px solid rgba(243, 186, 47, 0.3);
            box-shadow: 0 0 15px rgba(243, 186, 47, 0.15);
        }
        .bc-summary-icon.security {
            background: rgba(16, 185, 129, 0.15);
            color: #34d399;
            border: 1px solid rgba(16, 185, 129, 0.3);
            box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
        }
        .bc-summary-info {
            display: flex;
            flex-direction: column;
        }
        .bc-summary-title {
            font-size: 11px;
            font-weight: 700;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .bc-summary-value {
            font-size: 15px;
            font-weight: 800;
            color: #f8fafc;
            margin-top: 2px;
        }

        .bc-progress-area {
            margin-top: 20px;
            padding: 24px;
            background: rgba(243, 186, 47, 0.03);
            border-radius: 20px;
            border: 1px dashed rgba(243, 186, 47, 0.35);
            box-shadow: 0 0 25px rgba(243, 186, 47, 0.05);
        }

        .bc-progress-bar {
            height: 10px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 6px;
            overflow: hidden;
            margin: 12px 0;
            border: 1px solid rgba(255,255,255,0.03);
        }

        .bc-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #f3ba2f, #ffd700, #f59e0b);
            width: 0%;
            transition: width 0.5s cubic-bezier(0.1, 0.8, 0.2, 1);
            box-shadow: 0 0 10px rgba(243, 186, 47, 0.5);
        }

        .bc-table-container {
            margin-top: 20px;
            overflow-x: auto;
        }

        /* Retro hacker console style log box */
        .bc-log-box {
            margin-top: 15px;
            background: rgba(10, 15, 30, 0.96);
            border-radius: 16px;
            padding: 20px;
            font-family: 'Fira Code', 'Consolas', 'Courier New', monospace;
            font-size: 12px;
            color: #34d399;
            height: 180px;
            overflow-y: auto;
            border: 1px solid rgba(52, 211, 153, 0.25);
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 0 15px rgba(52, 211, 153, 0.05);
            position: relative;
            box-sizing: border-box;
        }
        .bc-log-box::-webkit-scrollbar {
            width: 6px;
        }
        .bc-log-box::-webkit-scrollbar-thumb {
            background: rgba(52, 211, 153, 0.3);
            border-radius: 3px;
        }
        /* Scanlines for hacker screen feel */
        .bc-log-box::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
            background-size: 100% 3px, 3px 100%;
            pointer-events: none;
            z-index: 10;
        }

        .bc-action-btns {
            display: flex;
            gap: 12px;
            margin-top: 24px;
            position: relative;
            z-index: 2;
        }

        .btn-bc-send {
            background: linear-gradient(135deg, #f3ba2f, #f59e0b);
            color: #060913;
            border: none;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 15px;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 20px rgba(243, 186, 47, 0.3);
            flex: 1;
        }

        .btn-bc-send:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(243, 186, 47, 0.45);
            filter: brightness(1.1);
        }

        .btn-bc-send:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
            box-shadow: none !important;
        }

        .btn-bc-stop {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
            transition: all 0.3s;
        }
        .btn-bc-stop:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(239, 68, 68, 0.45);
            filter: brightness(1.1);
        }
        
        /* Vibrant custom-glow status badges */
        .bc-status-badge {
            padding: 4px 12px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
        }
        .status-wait {
            background: rgba(243, 186, 47, 0.08);
            color: #f3ba2f;
            border: 1px solid rgba(243, 186, 47, 0.25);
            box-shadow: 0 0 10px rgba(243, 186, 47, 0.08);
        }
        .status-proc {
            background: rgba(245, 158, 11, 0.1);
            color: #f59e0b;
            border: 1px solid rgba(245, 158, 11, 0.25);
            box-shadow: 0 0 10px rgba(245, 158, 11, 0.1);
        }
        .status-sent {
            background: rgba(16, 185, 129, 0.1);
            color: #34d399;
            border: 1px solid rgba(16, 185, 129, 0.25);
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
        }
        .status-fail {
            background: rgba(239, 68, 68, 0.1);
            color: #f87171;
            border: 1px solid rgba(239, 68, 68, 0.25);
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.1);
        }
        .status-skip {
            background: rgba(148, 163, 184, 0.1) !important;
            color: #94a3b8 !important;
            border: 1px solid rgba(148, 163, 184, 0.25) !important;
            box-shadow: 0 0 10px rgba(148, 163, 184, 0.08) !important;
        }

        /* Dotted-Neon gold dropzone */
        .bc-image-preview {
            width: 120px;
            height: 120px;
            border-radius: 16px;
            border: 2px dashed rgba(243, 186, 47, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(15, 23, 42, 0.4);
            margin-bottom: 12px;
            position: relative;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
            overflow: hidden;
            box-sizing: border-box;
        }
        .bc-image-preview:hover {
            border-color: #f3ba2f;
            background: rgba(15, 23, 42, 0.6);
            box-shadow: 0 0 15px rgba(243, 186, 47, 0.15);
        }
        .bc-image-preview:hover i {
            transform: scale(1.1) translateY(-2px);
            color: #f3ba2f !important;
        }
        .bc-image-preview i {
            transition: all 0.3s ease;
        }
        .bc-image-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.4s ease;
        }
        .bc-image-preview:hover img {
            transform: scale(1.05);
        }
        .bc-image-remove {
            position: absolute;
            top: 6px;
            right: 6px;
            background: #ef4444;
            color: white;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 10px;
            box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
            transition: all 0.2s;
            z-index: 10;
        }
        .bc-image-remove:hover {
            transform: scale(1.1);
            background: #dc2626;
        }

        /* === TOAST NOTIFICATION === */
        .nms-toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 99999;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
        }
        .nms-toast {
            pointer-events: auto;
            min-width: 320px;
            max-width: 420px;
            padding: 14px 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            font-weight: 600;
            color: #f1f5f9;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
            animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            transition: all 0.3s ease;
        }
        .nms-toast.toast-out {
            animation: toastSlideOut 0.35s cubic-bezier(0.55, 0, 1, 0.45) forwards;
        }
        .nms-toast-icon {
            width: 32px; height: 32px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 14px; flex-shrink: 0;
        }
        .nms-toast-body { flex: 1; line-height: 1.4; }
        .nms-toast-title { font-weight: 700; font-size: 13px; margin-bottom: 2px; }
        .nms-toast-msg { font-weight: 400; font-size: 12px; opacity: 0.85; }
        .nms-toast-close {
            background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer;
            font-size: 14px; padding: 4px; transition: color 0.2s;
        }
        .nms-toast-close:hover { color: #fff; }
        .nms-toast-progress {
            position: absolute; bottom: 0; left: 0; height: 3px; border-radius: 0 0 12px 12px;
            animation: toastProgress linear forwards;
        }
        .nms-toast.toast-success {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.25));
            border: 1px solid rgba(16, 185, 129, 0.3);
        }
        .nms-toast.toast-success .nms-toast-icon { background: rgba(16, 185, 129, 0.2); color: #34d399; }
        .nms-toast.toast-success .nms-toast-progress { background: #10b981; }
        .nms-toast.toast-error {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.25));
            border: 1px solid rgba(239, 68, 68, 0.3);
        }
        .nms-toast.toast-error .nms-toast-icon { background: rgba(239, 68, 68, 0.2); color: #f87171; }
        .nms-toast.toast-error .nms-toast-progress { background: #ef4444; }
        .nms-toast.toast-warning {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.25));
            border: 1px solid rgba(245, 158, 11, 0.3);
        }
        .nms-toast.toast-warning .nms-toast-icon { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
        .nms-toast.toast-warning .nms-toast-progress { background: #f59e0b; }
        .nms-toast.toast-info {
            background: linear-gradient(135deg, rgba(243, 186, 47, 0.15), rgba(255, 215, 0, 0.25));
            border: 1px solid rgba(243, 186, 47, 0.3);
        }
        .nms-toast.toast-info .nms-toast-icon { background: rgba(243, 186, 47, 0.2); color: #f3ba2f; }
        .nms-toast.toast-info .nms-toast-progress { background: #f3ba2f; }
        @keyframes toastSlideIn {
            from { transform: translateX(120%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        @keyframes toastSlideOut {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(120%); opacity: 0; }
        }
        @keyframes toastProgress {
            from { width: 100%; }
            to { width: 0%; }
        }

        /* === CUSTOM CONFIRM MODAL === */
        .nms-confirm-overlay {
            position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
            z-index: 99998; display: flex; align-items: center; justify-content: center;
            animation: fadeIn 0.2s ease;
        }
        .nms-confirm-box {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px; padding: 30px; max-width: 400px; width: 90%;
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
            animation: scaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            text-align: center;
        }
        .nms-confirm-icon {
            width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
            display: flex; align-items: center; justify-content: center; font-size: 24px;
        }
        .nms-confirm-icon.warn { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 2px solid rgba(245,158,11,0.3); }
        .nms-confirm-icon.danger { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 2px solid rgba(239,68,68,0.3); }
        .nms-confirm-title { font-size: 18px; font-weight: 700; color: #f1f5f9; margin-bottom: 8px; }
        .nms-confirm-text { font-size: 13px; color: #94a3b8; line-height: 1.6; margin-bottom: 24px; }
        .nms-confirm-btns { display: flex; gap: 10px; justify-content: center; }
        .nms-confirm-btn {
            padding: 10px 24px; border-radius: 10px; font-weight: 700; font-size: 13px;
            cursor: pointer; border: none; transition: all 0.2s;
        }
        .nms-confirm-btn.cancel {
            background: rgba(255,255,255,0.05); color: #94a3b8; border: 1px solid rgba(255,255,255,0.1);
        }
        .nms-confirm-btn.cancel:hover { background: rgba(255,255,255,0.1); color: #f1f5f9; }
        .nms-confirm-btn.confirm {
            background: linear-gradient(135deg, #f3ba2f, #ffd700); color: #060913;
            box-shadow: 0 4px 15px rgba(243, 186, 47, 0.3);
            font-weight: 800;
        }
        .nms-confirm-btn.confirm:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(243, 186, 47, 0.4); }
        .nms-confirm-btn.danger {
            background: linear-gradient(135deg, #ef4444, #dc2626); color: white;
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
        }
        .nms-confirm-btn.danger:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(239,68,68,0.4); }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes scaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

        .bc-custom-inputs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        @media (max-width: 480px) {
            .bc-custom-inputs {
                grid-template-columns: 1fr;
                gap: 8px;
            }
        }
    