  .progress-view::-webkit-scrollbar { display: none !important; width: 0 !important; }
  .progress-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
  .progress-empty { color: var(--text-muted); font-size: 13px; text-align: center; margin-top: 60px; }

  /* 진행상황 카드 */
  .progress-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid #ef4444;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
  }
  .progress-card:hover { border-color: #ef4444; box-shadow: 0 0 16px rgba(239,68,68,0.15); transform: translateY(-1px); }
  .progress-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 6px; }
  .progress-card-name { font-size: 15px; font-weight: 700; color: var(--text); }
  .progress-card-date {
    font-size: 12px; font-weight: 700;
    color: #fff; background: #ef4444;
    padding: 3px 10px; border-radius: 20px;
    white-space: nowrap; flex-shrink: 0; margin-left: 8px;
  }
  .progress-card-date.urgent { background: #dc2626; animation: pulse-red 1.5s infinite; }
  @keyframes pulse-red { 0%,100%{box-shadow:0 0 0 0 rgba(239,68,68,0.4)} 50%{box-shadow:0 0 0 6px rgba(239,68,68,0)} }
  @keyframes houseIn {
    0%   { transform: scale(0) rotate(-15deg); opacity: 0; }
    60%  { transform: scale(1.3) rotate(5deg); opacity: 1; }
    80%  { transform: scale(0.9) rotate(-3deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
  }
  @keyframes housePulse {
    0%,100% { filter: brightness(1); }
    50%     { filter: brightness(1.5) drop-shadow(0 0 4px #fcd34d); }
  }
  .house-icon {
    font-size: 22px; line-height: 1; cursor: default;
    transition: transform 0.2s;
  }
  .house-icon.empty { opacity: 0.2; filter: grayscale(1); }
  .house-icon.filled {
    animation: houseIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both,
               housePulse 2s ease-in-out 0.5s 3;
  }
  .house-icon:hover { transform: scale(1.2); }
  .progress-card-addr { font-size: 11px; color: var(--text-muted); margin-bottom: 14px; }

  /* 임대/인테리어 진행 행 */
  .progress-rows { display: flex; flex-direction: column; gap: 10px; }
  .progress-row { display: flex; align-items: center; gap: 12px; }
  .progress-row-label {
    font-size: 11px; font-weight: 600; color: var(--text-muted);
    width: 64px; flex-shrink: 0;
  }
  .progress-status-select {
    font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 20px;
    border: 1px solid; cursor: pointer;
    background: transparent;
    font-family: 'Noto Sans KR', sans-serif;
    flex-shrink: 0;
  }
  .status-done    { background: rgba(16,185,129,0.15)!important; border-color: #10b981!important; color: #6ee7b7!important; }
  .status-ongoing { background: rgba(245,158,11,0.15)!important; border-color: #f59e0b!important; color: #fcd34d!important; }
  .status-pending { background: rgba(107,114,128,0.15)!important; border-color: #6b7280!important; color: #9ca3af!important; }
  .progress-date-input {
    font-size: 11px; color: var(--text-muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 2px 6px;
    font-family: 'Noto Sans KR', sans-serif;
    cursor: pointer;
    transition: border-color 0.2s;
    width: 120px;
  }
  .progress-date-input:hover { border-color: var(--border); }
  .progress-date-input:focus { outline: none; border-color: #ef4444; color: var(--text); }
  .progress-date-placeholder { font-size: 11px; color: var(--text-muted); opacity: 0.5; cursor: text; }

  /* 메모 영역 */
  .progress-memo {
    margin-top: 12px; padding-top: 10px;
    border-top: 1px solid var(--border);
    font-size: 11px; color: var(--text-muted);
    line-height: 1.5;
    white-space: pre-wrap;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }

  /* ── 신규설립 대시보드 ── */
  .dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 20px; }
  .dash-stat-card { background: var(--surface2); border: 1.5px solid var(--border); border-radius: 14px; padding: 20px 22px; transition: border-color 0.2s; }
  .dash-stat-card.clickable { cursor: pointer; }
  .dash-stat-card.clickable:hover { border-color: #ec4899; }
  .dash-stat-label { font-size: 14px; font-weight: 600; color: var(--text-dim); margin-bottom: 10px; letter-spacing: 0.03em; }
  .dash-stat-val { font-size: 32px; font-weight: 700; color: var(--text); display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; line-height: 1; }
  .dash-stat-val.pink { color: #ec4899; }
  .dash-stat-unit { font-size: 16px; font-weight: 400; color: var(--text-muted); }
  .dash-stat-sub { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
  .goal-input { font-size: 32px; font-weight: 700; color: #ec4899; width: 56px; background: transparent; border: none; border-bottom: 2px solid #ec4899; outline: none; font-family: 'Noto Sans KR', sans-serif; padding: 0; line-height: 1; }
  .goal-bar-bg { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-top: 10px; }
  .goal-bar-fg { height: 100%; background: #ec4899; border-radius: 3px; transition: width 0.5s; }
  .goal-bar-label { font-size: 11px; color: var(--text-muted); margin-top: 6px; }

  .dash-section-label { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
  .dash-table-wrap { background: var(--surface); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; }
  .dash-table { width: 100%; border-collapse: collapse; }
  .dash-table th { background: var(--surface2); font-weight: 600; font-size: 14px; color: var(--text-dim); padding: 12px 18px; text-align: left; border-bottom: 1.5px solid var(--border); white-space: nowrap; }
  .dash-table .tr-main td { padding: 14px 18px; border-bottom: 1px solid var(--border); color: var(--text); font-size: 14px; vertical-align: middle; cursor: pointer; transition: background 0.15s; }
  .dash-table .tr-main:hover td { background: var(--surface2); }
  .dash-table .tr-main.open td { background: var(--surface2); }
  .dash-table .tr-detail td { padding: 0; border-bottom: 1.5px solid var(--border); }

  /* 인라인 지점 추가 */
  .dash-add-row td { padding: 0 !important; border-bottom: none !important; }
  .dash-add-trigger {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 18px; cursor: pointer;
    color: var(--text-muted); font-size: 13px;
    transition: background 0.15s, color 0.15s;
    border-top: 1.5px dashed var(--border);
  }
  .dash-add-trigger:hover { background: var(--surface2); color: var(--accent-blue); }
  .dash-add-trigger .dash-add-icon { font-size: 18px; font-weight: 300; color: var(--accent-blue); line-height: 1; }
  .dash-inline-form { display: none; padding: 16px 18px; background: var(--surface2); border-top: 1.5px solid var(--border); }
  .dash-inline-form.open { display: block; }
  .dash-inline-fields { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
  .dash-inline-inp {
    background: var(--bg); border: 1.5px solid var(--border); border-radius: 8px;
    color: var(--text); font-size: 13px; padding: 7px 12px;
    outline: none; font-family: 'Noto Sans KR', sans-serif;
    transition: border-color 0.15s;
  }
  .dash-inline-inp:focus { border-color: var(--accent-blue); }
  .dash-inline-inp.inp-name { min-width: 180px; flex: 1; }
  .dash-inline-inp.inp-date { width: 145px; }
  .dash-inline-sel {
    background: var(--bg); border: 1.5px solid var(--border); border-radius: 8px;
    color: var(--text); font-size: 13px; padding: 7px 10px;
    outline: none; font-family: 'Noto Sans KR', sans-serif; cursor: pointer;
  }
  .dash-inline-actions { display: flex; gap: 8px; margin-top: 10px; }
  .dash-inline-save { background: var(--accent-blue); color: #fff; border: none; border-radius: 8px; padding: 7px 20px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'Noto Sans KR', sans-serif; }
  .dash-inline-save:hover { opacity: 0.85; }
  .dash-inline-cancel { background: transparent; color: var(--text-muted); border: 1.5px solid var(--border); border-radius: 8px; padding: 7px 16px; font-size: 13px; cursor: pointer; font-family: 'Noto Sans KR', sans-serif; }
  .dash-inline-cancel:hover { color: var(--text); }
  .dash-detail-inner { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
  .dash-detail-inner.open { max-height: 500px; }
  .dash-detail-card { padding: 16px 22px; background: var(--bg); border-top: 1px solid var(--border); }
  .dash-detail-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; gap: 12px; }
  .dash-detail-name-row { display: flex; align-items: center; gap: 14px; }
  .dash-detail-name { font-size: 17px; font-weight: 700; color: var(--text); }
  .dash-detail-dday { font-size: 12px; font-weight: 700; color: #ef4444; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); border-radius: 12px; padding: 2px 10px; white-space: nowrap; }
  .dash-detail-dday.far { color: var(--text-muted); background: var(--surface2); border-color: var(--border); }
  .dash-open-badge { font-size: 12px; font-weight: 700; color: #fff; padding: 5px 12px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; display: flex; align-items: center; gap: 8px; background: #ec4899; }
  .dash-open-badge.urgent { background: #ef4444; animation: pulse-red 1.5s infinite; }
  .dash-open-dday { font-weight: 800; font-size: 13px; }
  .dash-open-date-sub { font-size: 11px; opacity: 0.85; font-weight: 400; }
  .dash-detail-addr { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
  /* 2컬럼 레이아웃 */
  .dash-detail-body { display: flex; gap: 0; }
  .dash-detail-left { flex: 0 0 auto; min-width: 280px; padding-right: 18px; border-right: 1px solid var(--border); }
  .dash-detail-right { flex: 1; padding-left: 18px; display: flex; flex-direction: column; }
  .dash-detail-rows { display: flex; flex-direction: column; gap: 10px; }
  .dash-detail-row { display: flex; align-items: center; gap: 10px; }
  .dash-detail-label { font-size: 12px; color: var(--text-muted); width: 65px; flex-shrink: 0; }
  .dash-detail-dateval { font-size: 13px; color: var(--text-muted); }
  .dash-detail-memo { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); line-height: 1.6; }
  /* 인라인 편집 필드 */
  .dash-edit-date {
    font-size: 12px; color: var(--text-muted);
    background: transparent; border: none; border-bottom: 1px dashed var(--border);
    outline: none; font-family: 'Noto Sans KR', sans-serif;
    padding: 1px 4px; cursor: text; width: 120px;
    transition: border-color 0.15s, color 0.15s;
  }
  .dash-edit-date:focus { border-bottom-color: var(--accent-blue); color: var(--text); }
  .dash-edit-memo {
    flex: 1; width: 100%;
    font-size: 13px; color: var(--text-muted); line-height: 1.6;
    background: var(--surface2); border: 1.5px solid var(--border); border-radius: 8px;
    outline: none; resize: none; font-family: 'Noto Sans KR', sans-serif;
    padding: 10px 12px; min-height: 80px;
    transition: border-color 0.15s, color 0.15s;
  }
  .dash-edit-memo:focus { color: var(--text); border-color: var(--accent-blue); }
  .dash-edit-memo::placeholder { color: var(--text-muted); opacity: 0.5; }
  .dash-map-hint { margin-top: 10px; font-size: 12px; color: var(--text-muted); opacity: 0.5; cursor: pointer; }
  .dash-map-hint:hover { opacity: 1; color: #ec4899; }

  /* ── 간트 차트 ── */
  .gantt-wrap { background:var(--surface); border:1.5px solid var(--border); border-radius:14px; padding:18px 20px; margin-bottom:0; overflow:hidden; position:relative; }
  .gantt-legend { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:14px; }
  .gantt-leg { display:flex; align-items:center; gap:6px; font-size:12px; color:var(--text-muted); }
  .gantt-leg-dot { width:10px; height:10px; border-radius:2px; flex-shrink:0; }
  .gantt-leg-circle { width:10px; height:10px; border-radius:50%; flex-shrink:0; border:1.5px solid #111; background:conic-gradient(#10b981 0deg 120deg,#3b82f6 120deg 240deg,#6b7280 240deg 360deg); }
  .gantt-table { width:100%; border-collapse:collapse; table-layout:fixed; min-width:780px; }
  .gantt-th-name { font-size:11px; font-weight:600; color:var(--text-dim); padding:20px 12px 4px 0; text-align:left; width:200px; min-width:200px; }
  .gantt-th { font-size:11px; font-weight:600; color:var(--text-dim); padding:20px 2px 4px; text-align:center; border-left:1px solid var(--border); position:relative; overflow:hidden; width:calc((100% - 160px) / 12); }
  .gantt-row { border-top:1px solid var(--border); transition:background 0.15s; }
  .gantt-row:hover { background:rgba(163,230,53,0.08); }
  .gantt-row:hover .gantt-td-name { color:#a3e635; }
  .gantt-row:hover .gantt-td { border-left-color:rgba(163,230,53,0.2); }
  .gantt-td-region { font-size:10px; color:var(--text-muted); padding:7px 8px 7px 4px; white-space:nowrap; width:60px; min-width:60px; vertical-align:middle; }
  .gantt-th-region { font-size:11px; font-weight:600; color:var(--text-dim); padding:20px 8px 4px 4px; text-align:left; width:60px; }
  .gantt-td-name { font-size:12px; color:var(--text); padding:7px 12px 7px 0; white-space:nowrap; width:200px; min-width:200px; }
  .gantt-td { position:relative; border-left:1px solid var(--border); height:32px; padding:0; overflow:visible; }
  .gantt-dot { position:absolute; top:50%; transform:translate(-50%,-50%); width:9px; height:9px; border-radius:50%; border:1.5px solid #111; z-index:5; background:conic-gradient(#10b981 0deg 120deg,#3b82f6 120deg 240deg,#6b7280 240deg 360deg); }
  .gantt-bar { position:absolute; top:50%; transform:translateY(-50%); height:16px; border-radius:4px; min-width:4px; }
  .gantt-dot { position:absolute; top:50%; transform:translate(-50%,-50%); width:10px; height:10px; border-radius:50%; border:1.5px solid #111; z-index:3; background:conic-gradient(#10b981 0deg 120deg,#3b82f6 120deg 240deg,#6b7280 240deg 360deg); }
  .gantt-today-overlay { position:absolute; top:0; bottom:0; width:2px; background:#ef4444; z-index:10; pointer-events:none; }
  .gantt-today-label { position:absolute; font-size:9px; color:#ef4444; white-space:nowrap; transform:translateX(-50%); font-weight:700; }

  .dash-badge { display: inline-flex; align-items: center; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; border: 1.5px solid; white-space: nowrap; }
  .db-done    { background: rgba(16,185,129,0.15); border-color: #10b981; color: #34d399; }
  .db-ongoing { background: rgba(251,191,36,0.15);  border-color: #fbbf24; color: #fcd34d; }
  .db-pending { background: rgba(107,114,128,0.15); border-color: #4b5563; color: #9ca3af; }

  .dash-dday-bold { font-weight: 800; color: #ef4444; font-size: 15px; }
  .dash-dday-bold.far { color: var(--text); }
  .dash-dday-date { font-size: 12px; color: var(--text-muted); margin-left: 4px; }

  .dash-mini { display: flex; align-items: center; gap: 10px; }
  .dash-mini-track { flex: 1; height: 6px; background: var(--surface2); border-radius: 3px; overflow: hidden; min-width: 70px; }
  .dash-mini-fill { height: 100%; background: #ec4899; border-radius: 3px; transition: width 0.3s; }
  .dash-mini-pct { font-size: 13px; color: var(--text-muted); width: 32px; text-align: right; flex-shrink: 0; }

  .dash-chevron { font-size: 11px; color: var(--text-muted); transition: transform 0.25s; display: inline-block; }
  .dash-chevron.open { transform: rotate(180deg); }
  .dash-name-cell { font-weight: 500; font-size: 14px; color: var(--text-dim); }

  .dash-sel { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; border: 1.5px solid; cursor: pointer; font-family: 'Noto Sans KR', sans-serif; outline: none; }
  .ds-done    { background: rgba(16,185,129,0.15)!important; border-color: #10b981!important; color: #34d399!important; }
  .ds-ongoing { background: rgba(251,191,36,0.15)!important;  border-color: #fbbf24!important; color: #fcd34d!important; }
  .ds-pending { background: rgba(107,114,128,0.15)!important; border-color: #4b5563!important; color: #9ca3af!important; }
