/* ===== MOBYDICK Page Builder — Global Styles ===== */
/* 2026-06-09 (PD 결정): 다크 베이스 유지 + 연구소 톤은 액센트로만.
   가독성 우선. Serif 헤딩 제거. 청록 액센트만 연구소 톤. */

:root {
  /* 다크 베이스 (원상) — 가독성 우선 */
  --navy: #1A1A2E;
  --deep: #0F3460;
  --blue: #4A6FA5;
  --red: #E94560;
  --white: #FFFFFF;
  --gray: #B0B0B0;
  --muted: #888888;            /* 기존 #666 → 약간 밝게 (가독성 ↑) */
  --card: #16213E;
  --border: rgba(74,111,165,0.25);

  /* 연구소 톤 액센트만 가져옴 (호버·강조 포인트용) */
  --accent-teal: #46c8cf;      /* aqua — 청록 액센트 */
  --accent-ocean: #178a9c;     /* teal — 차분한 강조 */
  --accent-foam: rgba(70,200,207,0.12);
  --accent-foam-strong: rgba(70,200,207,0.22);
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: "IBM Plex Sans KR", 'Noto Sans KR', sans-serif;
  background: #0e0e1a;
  color: var(--white);
  min-height: 100vh;
  line-height: 1.65;            /* 가독성 ↑ (기본 1.5 → 1.65) */
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "IBM Plex Sans KR", 'Noto Sans KR', sans-serif;
  letter-spacing: -0.015em;     /* 약간 좁히기 (가독성·디자인) */
}

a { color: var(--accent-teal); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-ocean); }

/* ===== TOP NAV ===== */
.top-nav {
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed; top:0; left:0; right:0;
  z-index: 100;
}
.top-nav .brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; color: white; text-decoration:none;
}
.top-nav .brand .nav-logo { height: 32px; width: auto; }
.top-nav .nav-label { color: var(--muted); font-size: 13px; font-weight: 400; }
.top-nav .nav-right { display: flex; align-items: center; gap: 10px; }
.concept-selector {
  background: rgba(255,255,255,0.08); border: 1px solid var(--border); border-radius: 6px;
  color: var(--white); padding: 4px 8px; font-size: 12px; font-family: inherit; cursor: pointer;
}
.concept-selector:focus { outline: none; border-color: var(--blue); }
.concept-selector option { background: var(--navy); color: var(--white); }
.top-nav .nav-project-name {
  color: var(--gray); font-size: 13px;
  padding: 4px 12px; background: rgba(255,255,255,0.05); border-radius: 6px;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 8px 18px; border-radius: 8px; border: none;
  font-size: 14px; font-weight: 500; cursor: pointer;
  font-family: inherit; transition: all 0.15s;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  text-decoration: none;
}
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--gray); }
.btn-outline:hover { border-color: var(--blue); color: var(--white); }
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: #5a7fb5; }
.btn-red { background: var(--red); color: white; }
.btn-sm { padding: 5px 12px; font-size: 12px; }
.btn-lg { padding: 14px 32px; font-size: 16px; font-weight: 700; }

/* ===== MAIN CONTENT ===== */
.main-content { margin-top: 56px; }

/* ===== FLASH MESSAGES ===== */
.flash-container { position: fixed; top: 60px; left: 50%; transform: translateX(-50%); z-index: 200; }
.flash { padding: 10px 20px; border-radius: 8px; font-size: 14px; margin-bottom: 6px; }
.flash-error { background: var(--red); color: white; }
.flash-success { background: #22c55e; color: white; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--blue); color: white;
  padding: 12px 24px; border-radius: 8px; font-size: 14px;
  transition: transform 0.3s; z-index: 200;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== DASHBOARD ===== */
/* 2026-05-18 사용자 요청: 액션 바 한 줄에 다 보이게 — 컨테이너 폭 1100 → 1500. */
.dashboard { max-width: 1500px; margin: 0 auto; padding: 40px 24px; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: nowrap; }
.dash-header h1 { font-size: 28px; }
.dash-header > div { flex-wrap: nowrap; white-space: nowrap; }

.project-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px;
}
.project-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px;
  transition: border-color 0.2s;
}
.project-card:hover { border-color: var(--blue); }
.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.card-icon { font-size: 28px; }
.card-status { font-size: 12px; padding: 3px 10px; border-radius: 12px; }
.card-status.done { background: rgba(34,197,94,0.15); color: #4ade80; }
.card-status.progress { background: rgba(74,111,165,0.15); color: var(--blue); }
.card-model { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.card-name { font-size: 14px; color: var(--gray); margin-bottom: 8px; }
.card-date { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.card-actions { display: flex; gap: 8px; }

.empty-state { text-align: center; padding: 80px 0; }
.empty-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.3; }
.empty-state h2 { color: var(--gray); margin-bottom: 8px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

/* ===== SIDE PANEL (New Project) ===== */
.side-panel-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 999; transition: opacity 0.3s;
}
.side-panel-overlay.open { display: block; }
.side-panel {
  position: fixed; top: 0; right: -520px; width: 500px; height: 100vh;
  background: var(--dark); border-left: 1px solid var(--border);
  z-index: 1000; transition: right 0.3s ease;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.3);
}
.side-panel.open { right: 0; }
.side-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.side-panel-header h2 { font-size: 17px; font-weight: 700; }
.side-panel-close {
  width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border);
  background: transparent; color: var(--gray); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.15s;
}
.side-panel-close:hover { background: rgba(239,68,68,0.1); color: #f87171; border-color: rgba(239,68,68,0.3); }
.side-panel-body {
  flex: 1; overflow-y: auto; padding: 20px;
}
.sp-form-step {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px; margin-bottom: 14px;
}
.sp-form-step h3 {
  font-size: 14px; font-weight: 700; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.sp-step-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); color: white; font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.sp-field-row { display: flex; gap: 10px; margin-bottom: 8px; }
.sp-field { flex: 1; }
.sp-field label { font-size: 11px; color: var(--gray); display: block; margin-bottom: 3px; }
.sp-field input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 6px; padding: 8px 10px; color: white; font-size: 13px; font-family: inherit;
}
.sp-field input:focus { outline: none; border-color: var(--blue); }
.sp-upload-drop {
  border: 2px dashed var(--border); border-radius: 12px; padding: 24px;
  text-align: center; cursor: pointer; transition: all 0.2s;
}
.sp-upload-drop:hover, .sp-upload-drop.dragover { border-color: var(--blue); background: rgba(74,111,165,0.05); }
.sp-upload-drop .sp-drop-icon { font-size: 32px; margin-bottom: 6px; }
.sp-upload-drop p { color: var(--gray); font-size: 13px; }
.sp-upload-drop .sp-drop-hint { font-size: 11px; color: var(--muted); margin-top: 2px; }
.sp-drop-preview { max-width: 100%; max-height: 160px; object-fit: contain; border-radius: 8px; margin-top: 8px; }
.sp-concept-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
}
.sp-concept-opt {
  background: rgba(255,255,255,0.03); border: 2px solid var(--border); border-radius: 8px;
  padding: 8px 10px; cursor: pointer; transition: all 0.15s;
  display: flex; align-items: center; gap: 6px; font-size: 12px;
}
.sp-concept-opt:hover { border-color: var(--blue); background: rgba(74,111,165,0.06); }
.sp-concept-opt.selected { border-color: var(--blue); background: rgba(74,111,165,0.12); box-shadow: 0 0 0 1px var(--blue); }
.sp-concept-name { font-weight: 600; color: var(--white); }
.sp-selling-points { display: flex; flex-direction: column; gap: 6px; }
.sp-selling-points input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 6px; padding: 8px 10px; color: white; font-size: 13px; font-family: inherit;
}
.sp-selling-points input:focus { outline: none; border-color: var(--blue); }
.sp-spec-row { display: flex; gap: 8px; margin-bottom: 6px; }
.sp-spec-row input {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 6px; padding: 8px 10px; color: white; font-size: 13px; font-family: inherit;
}
.sp-spec-row input:focus { outline: none; border-color: var(--blue); }

/* ===== NEW PROJECT ===== */
.new-project { max-width: 700px; margin: 0 auto; padding: 40px 24px; }
.new-project h1 { font-size: 28px; margin-bottom: 8px; }
.form-desc { color: var(--gray); font-size: 15px; margin-bottom: 32px; }

.form-step {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; margin-bottom: 20px;
}
.form-step h2 { font-size: 18px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: white; font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}

.field { margin-bottom: 12px; }
.field label { font-size: 13px; color: var(--gray); display: block; margin-bottom: 4px; }
.field input, .field textarea, .field select {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 14px; color: white; font-size: 14px; font-family: inherit;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); }
.field-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.field-row { display: flex; gap: 12px; margin-bottom: 12px; }
.field-row .field { flex: 1; margin-bottom: 0; }

.sp-row { display: flex; gap: 10px; }
.sp-row input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 14px; color: white; font-size: 14px; font-family: inherit; }
.sp-row input:focus { outline:none; border-color:var(--blue); }

.spec-row { display: flex; gap: 10px; margin-bottom: 8px; }
.spec-row input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 14px; color: white; font-size: 14px; font-family: inherit; }
.spec-row input:focus { outline:none; border-color:var(--blue); }

.upload-drop {
  border: 2px dashed var(--border); border-radius: 16px; padding: 50px;
  text-align: center; cursor: pointer; transition: all 0.2s; position: relative;
}
.upload-drop:hover, .upload-drop.dragover { border-color: var(--blue); background: rgba(74,111,165,0.05); }
.upload-drop .drop-icon { font-size: 48px; margin-bottom: 12px; }
.upload-drop p { color: var(--gray); font-size: 15px; }
.upload-drop .drop-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.upload-drop input[type="file"] { display:none; }
.drop-preview { max-width: 100%; max-height: 300px; object-fit: contain; border-radius: 12px; margin-top: 12px; }

/* ===== CONCEPT SELECT GRID ===== */
.concept-select-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px;
}
.concept-option {
  background: rgba(255,255,255,0.03); border: 2px solid var(--border); border-radius: 12px;
  padding: 14px; cursor: pointer; transition: all 0.15s; position: relative;
}
.concept-option:hover { border-color: var(--blue); background: rgba(74,111,165,0.06); }
.concept-option.selected { border-color: var(--blue); background: rgba(74,111,165,0.12);
  box-shadow: 0 0 0 1px var(--blue); }
.concept-option.selected::after {
  content: '✓'; position: absolute; top: 8px; right: 10px;
  width: 20px; height: 20px; background: var(--blue); color: white;
  border-radius: 50%; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.co-top { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.co-icon { font-size: 18px; }
.co-name { font-size: 13px; font-weight: 700; color: var(--white); }
.co-default { font-size: 9px; background: var(--blue); color: white; padding: 1px 6px; border-radius: 4px; font-weight: 600; }
.co-desc { font-size: 11px; color: var(--gray); line-height: 1.4; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.co-colors { display: flex; gap: 4px; margin-bottom: 6px; }
.co-color { width: 16px; height: 16px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.1); }
.co-best { font-size: 10px; color: var(--muted); }

.submit-btn { width: 100%; margin-top: 8px; }

/* ===== EDITOR ===== */
.editor-layout {
  display: flex; height: calc(100vh - 56px);
}

/* Editor: Section List */
.editor-layout .section-list {
  width: 260px; background: var(--navy); border-right: 1px solid var(--border);
  overflow-y: auto; padding: 16px; flex-shrink: 0;
}
.section-list h3 { font-size: 12px; color: var(--muted); letter-spacing: 1px; margin-bottom: 12px; text-transform: uppercase; }
.section-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px; cursor: pointer;
  margin-bottom: 3px; border: 1px solid transparent; transition: all 0.1s;
}
.section-item:hover { background: rgba(74,111,165,0.1); }
.section-item.active { background: rgba(74,111,165,0.15); border-color: var(--blue); }
.section-item .num {
  width: 26px; height: 26px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.section-item .num.empty { background: rgba(255,255,255,0.05); color: var(--muted); }
.section-item .num.done { background: var(--blue); color: white; }
.section-item .info { flex: 1; min-width: 0; }
.section-item .info .name { font-size: 12px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.section-item .info .status { font-size: 10px; color: var(--muted); }
.section-item .info .status.done { color: #4ade80; }

.progress-bar { margin-top: 16px; padding: 12px; background: rgba(74,111,165,0.1); border-radius: 8px; }
.progress-bar .label { font-size: 11px; color: var(--gray); margin-bottom: 6px; }
.progress-bar .bar { height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.progress-bar .bar .fill { height: 100%; background: var(--blue); border-radius: 3px; transition: width 0.3s; }
.progress-bar .count { font-size: 11px; color: var(--muted); margin-top: 4px; text-align: right; }

.batch-section { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 16px; }

/* Editor: Preview */
.preview-area {
  flex: 1; overflow-y: auto; background: #0a0a16;
  display: flex; justify-content: center; padding: 24px;
}
.preview-scroll { width: 430px; }
.preview-section {
  width: 430px; margin-bottom: 6px; border-radius: 6px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent; transition: border-color 0.15s;
  position: relative; background: var(--card);
}
.preview-section:hover { border-color: rgba(74,111,165,0.3); }
.preview-section.active { border-color: var(--blue); }
.preview-section img { width: 100%; display: block; }
.preview-section .section-label-overlay {
  position: absolute; top: 6px; left: 6px;
  background: rgba(0,0,0,0.75); color: var(--gray);
  font-size: 10px; padding: 2px 7px; border-radius: 4px;
}
.preview-section .placeholder {
  width: 100%; aspect-ratio: 860/800;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 6px; color: var(--muted); font-size: 12px;
}
.preview-section .placeholder .ph-icon { font-size: 28px; opacity: 0.3; }
.preview-section .placeholder .ph-hint { font-size: 10px; }

/* Editor: Edit Panel */
.edit-panel {
  width: 360px; background: var(--navy); border-left: 1px solid var(--border);
  overflow-y: auto; padding: 20px; flex-shrink: 0;
}
.edit-panel h3 { font-size: 17px; font-weight: 700; margin-bottom: 2px; }
.panel-subtitle { font-size: 11px; color: var(--muted); margin-bottom: 18px; letter-spacing: 1px; }
.panel-hint { color: var(--muted); font-size: 14px; padding-top: 40px; text-align: center; }

.panel-section { margin-bottom: 20px; }
.panel-label { font-size: 11px; color: var(--blue); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }

.upload-area {
  border: 2px dashed var(--border); border-radius: 10px; padding: 24px;
  text-align: center; cursor: pointer; transition: all 0.15s;
}
.upload-area:hover { border-color: var(--blue); background: rgba(74,111,165,0.05); }
.upload-area .upload-icon { font-size: 30px; margin-bottom: 6px; }
.upload-area .upload-text { font-size: 13px; color: var(--gray); }
.upload-area .upload-hint { font-size: 10px; color: var(--muted); margin-top: 2px; }
.upload-area.has-preview { padding: 0; border-style: solid; }
.upload-area.has-preview img { width: 100%; display: block; border-radius: 8px; }

.prompt-box {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px;
  padding: 10px; font-size: 11px; color: var(--gray); line-height: 1.5;
  max-height: 120px; overflow-y: auto; font-family: 'Courier New', monospace;
  word-break: break-all;
}

.action-row { display: flex; gap: 6px; flex-wrap: wrap; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  display: none; align-items: center; justify-content: center; z-index: 300;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--navy); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; width: 420px; max-width: 90%;
}
.modal h3 { margin-bottom: 16px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 3px; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.45); }

/* ===== QUALITY CHECK ===== */
.quality-result { margin-top: 10px; padding: 12px; background: rgba(255,255,255,0.03); border-radius: 8px; border: 1px solid rgba(255,255,255,0.06); }
.qr-header { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 14px; margin-bottom: 10px; padding: 6px 10px; border-radius: 6px; }
.qr-header.qr-pass { background: rgba(16,185,129,0.1); color: #34d399; }
.qr-header.qr-fail { background: rgba(245,158,11,0.1); color: #fbbf24; }
.qr-score { font-size: 18px; font-weight: 800; }
.qr-bars { display: flex; flex-direction: column; gap: 4px; }
.qr-bar { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--gray); }
.qr-bar span:first-child { width: 50px; text-align: right; }
.qr-bar span:last-child { width: 20px; font-weight: 700; }
.qr-fill { flex: 1; height: 6px; border-radius: 3px; background: linear-gradient(90deg, #f59e0b, #10b981); transition: width 0.3s; }
.qr-issues { margin-top: 8px; font-size: 11px; color: #fbbf24; line-height: 1.6; padding: 8px; background: rgba(245,158,11,0.05); border-radius: 6px; }

/* ===== RESEARCH PANEL (Agent 02) ===== */
.research-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(167,139,250,0.15); border-radius: 10px; padding: 14px; margin-bottom: 12px; }
.rc-title { font-size: 14px; font-weight: 700; margin-bottom: 10px; color: #e2e8f0; }
.rc-subtitle { font-size: 12px; font-weight: 700; color: #a78bfa; margin: 10px 0 6px; border-bottom: 1px solid rgba(167,139,250,0.15); padding-bottom: 4px; }
.rc-body { font-size: 12px; color: #cbd5e1; line-height: 1.7; margin-bottom: 8px; }
.rc-note { font-size: 11px; color: #94a3b8; line-height: 1.6; margin-top: 6px; }
.rc-tag { display: inline-block; font-size: 11px; color: #fff; padding: 3px 10px; border-radius: 20px; margin: 2px 4px 2px 0; background: #4A6FA5; }
.rc-tags { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 4px; }
.rc-list { display: flex; flex-direction: column; gap: 6px; }
.rc-item { font-size: 12px; color: #cbd5e1; line-height: 1.6; padding: 6px 8px; background: rgba(255,255,255,0.02); border-radius: 6px; }
.rc-score { font-size: 13px; font-weight: 700; color: #a78bfa; margin-top: 8px; text-align: right; }
.rc-table { display: flex; flex-direction: column; gap: 4px; }
.rc-table-row { display: flex; align-items: center; gap: 8px; font-size: 12px; padding: 4px 8px; background: rgba(255,255,255,0.02); border-radius: 4px; }
.rc-kw { flex: 1; font-weight: 600; color: #e2e8f0; }
.rc-vol, .rc-comp { font-size: 10px; padding: 2px 6px; border-radius: 10px; font-weight: 600; }
.rc-v-높음, .rc-v-매우\ 높음 { background: rgba(16,185,129,0.15); color: #34d399; }
.rc-v-중간 { background: rgba(245,158,11,0.15); color: #fbbf24; }
.rc-v-낮음 { background: rgba(100,116,139,0.15); color: #94a3b8; }
.rc-c-높음 { background: rgba(239,68,68,0.15); color: #f87171; }
.rc-c-중간 { background: rgba(245,158,11,0.15); color: #fbbf24; }
.rc-c-낮음 { background: rgba(16,185,129,0.15); color: #34d399; }
.rc-priority { font-size: 10px; padding: 1px 6px; border-radius: 8px; font-weight: 700; margin-right: 4px; }
.rc-p-높음 { background: rgba(239,68,68,0.15); color: #f87171; }
.rc-p-중간 { background: rgba(245,158,11,0.15); color: #fbbf24; }
.rc-p-낮음 { background: rgba(100,116,139,0.15); color: #94a3b8; }
.rc-competitor { padding: 8px; margin-bottom: 6px; background: rgba(255,255,255,0.02); border-radius: 6px; border-left: 3px solid rgba(167,139,250,0.3); }
.rc-comp-name { font-size: 13px; font-weight: 700; color: #e2e8f0; margin-bottom: 2px; }
.rc-comp-row { font-size: 11px; color: #94a3b8; line-height: 1.5; }
