.bizpl-header { padding: 20px 24px; display: flex; align-items: center; gap: 16px; }
.bizpl-header h2 { margin: 0; color: #e2e8f0; }
.bizpl-subtitle { color: #64748b; font-size: 0.85rem; }
.bizpl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; padding: 0 24px 24px; }

.bizpl-card { background: linear-gradient(135deg, #1e1e2e, #252540); border: 1.5px solid #333; border-radius: 12px; padding: 20px; transition: border-color 0.2s; }
.bizpl-card:hover { border-color: #a78bfa; }
.bizpl-card-name { font-size: 1.1rem; font-weight: 600; color: #f1f5f9; margin-bottom: 12px; }

.bizpl-progress { display: flex; gap: 3px; height: 8px; border-radius: 4px; overflow: hidden; margin-bottom: 16px; }
.bizpl-progress-step { flex: 1; border-radius: 2px; transition: background 0.3s; }
.bizpl-progress-step.done { background: #22c55e; }
.bizpl-progress-step.pending { background: #333; }

.bizpl-checklist { list-style: none; padding: 0; margin: 0 0 12px; }
.bizpl-checklist li { padding: 4px 0; color: #cbd5e1; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.bizpl-check-done { color: #22c55e; }
.bizpl-check-pending { color: #64748b; }

.bizpl-time { color: #64748b; font-size: 0.78rem; margin-bottom: 12px; }

.bizpl-detail-btn { background: transparent; border: 1px solid #a78bfa; color: #a78bfa; padding: 6px 14px; border-radius: 8px; cursor: pointer; font-size: 0.8rem; transition: all 0.2s; }
.bizpl-detail-btn:hover { background: #a78bfa; color: #fff; }

.bizpl-detail-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 2000; display: flex; align-items: center; justify-content: center; }
.bizpl-detail-content { background: #1a1a2e; border: 1px solid #333; border-radius: 12px; width: 80vw; max-width: 900px; max-height: 80vh; overflow-y: auto; padding: 24px; position: relative; }
.bizpl-detail-tabs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.bizpl-detail-tab { padding: 6px 14px; border-radius: 8px; background: #252540; color: #94a3b8; border: none; cursor: pointer; font-size: 0.8rem; }
.bizpl-detail-tab.active { background: #a78bfa; color: #fff; }
.bizpl-detail-json { background: #0d0d1a; border-radius: 8px; padding: 16px; overflow-x: auto; font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.8rem; line-height: 1.5; color: #e2e8f0; white-space: pre-wrap; }
.bizpl-detail-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: #94a3b8; font-size: 1.5rem; cursor: pointer; }

.json-key { color: #a78bfa; }
.json-string { color: #22c55e; }
.json-number { color: #60a5fa; }
.json-bool { color: #f59e0b; }
.json-null { color: #64748b; }
