/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: #f8fafc;
  color: #111827;
  line-height: 1.5;
}

/* ===== LAYOUT ===== */
.max-w-7xl { max-width: 80rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.min-w-full { min-width: 100%; }
.w-9  { width: 2.25rem; }
.h-9  { height: 2.25rem; }
.h-16 { height: 4rem; }

/* ===== PADDING ===== */
.p-4  { padding: 1rem; }
.p-5  { padding: 1.25rem; }
.p-6  { padding: 1.5rem; }
.p-8  { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem;    padding-right: 1rem; }
.py-2 { padding-top: 0.5rem;   padding-bottom: 0.5rem; }
.py-6 { padding-top: 1.5rem;   padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem;     padding-bottom: 2rem; }
.py-10{ padding-top: 2.5rem;   padding-bottom: 2.5rem; }
.py-12{ padding-top: 3rem;     padding-bottom: 3rem; }
.pt-1 { padding-top: 0.25rem; }

/* ===== MARGIN ===== */
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.ml-2 { margin-left: 0.5rem; }

/* ===== GAP ===== */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

/* ===== FLEX ===== */
.flex         { display: flex; }
.inline-flex  { display: inline-flex; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.justify-between { justify-content: space-between; }
.justify-end     { justify-content: flex-end; }
.justify-center  { justify-content: center; }
.flex-end        { justify-content: flex-end; }
.flex-1          { flex: 1 1 0%; }
.shrink-0        { flex-shrink: 0; }
.ml-auto         { margin-left: auto; }
.space-x-4 > * + * { margin-left: 1rem; }

/* ===== GRID ===== */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:flex { display: flex; }
}
@media (min-width: 1024px) {
  .lg\:px-8       { padding-left: 2rem; padding-right: 2rem; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ===== DISPLAY ===== */
.block          { display: block; }
.hidden         { display: none; }
.overflow-hidden  { overflow: hidden; }
.overflow-y-auto  { overflow-y: auto; }
.overflow-x-auto  { overflow-x: auto; }
.whitespace-nowrap { white-space: nowrap; }
.cursor-pointer   { cursor: pointer; }

/* ===== POSITION ===== */
.fixed  { position: fixed; }
.inset-0 { inset: 0; }
.top-4  { top: 1rem; }
.right-4 { right: 1rem; }
.z-50   { z-index: 50; }

/* ===== TYPOGRAPHY ===== */
.text-xs    { font-size: 0.75rem;  line-height: 1rem; }
.text-sm    { font-size: 0.875rem; line-height: 1.25rem; }
.text-base  { font-size: 1rem;     line-height: 1.5rem; }
.text-lg    { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl    { font-size: 1.25rem;  line-height: 1.75rem; }
.text-2xl   { font-size: 1.5rem;   line-height: 2rem; }
.text-3xl   { font-size: 1.875rem; line-height: 2.25rem; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.tracking-tight { letter-spacing: -0.025em; }
.leading-5  { line-height: 1.25rem; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-center { text-align: center; }
.uppercase   { text-transform: uppercase; }
.underline   { text-decoration: underline; }

/* ===== COLORS – BACKGROUND ===== */
.bg-gray-50    { background-color: #f9fafb; }
.bg-white      { background-color: #ffffff; }
.bg-blue-50    { background-color: #eff6ff; }
.bg-blue-700   { background-color: #1d4ed8; }
.bg-emerald-50 { background-color: #ecfdf5; }
.bg-emerald-600 { background-color: #059669; }
.bg-orange-50  { background-color: #fff7ed; }
.bg-red-50     { background-color: #fef2f2; }
.bg-red-500    { background-color: #ef4444; }
.bg-purple-50  { background-color: #faf5ff; }

/* ===== COLORS – TEXT ===== */
.text-white      { color: #ffffff; }
.text-gray-400   { color: #9ca3af; }
.text-gray-500   { color: #6b7280; }
.text-gray-600   { color: #4b5563; }
.text-gray-700   { color: #374151; }
.text-gray-800   { color: #1f2937; }
.text-gray-900   { color: #111827; }
.text-blue-200   { color: #bfdbfe; }
.text-blue-300   { color: #93c5fd; }
.text-blue-600   { color: #2563eb; }
.text-blue-900   { color: #1e3a8a; }
.text-emerald-600 { color: #059669; }
.text-emerald-700 { color: #047857; }
.text-emerald-900 { color: #064e3b; }
.text-orange-500  { color: #f97316; }
.text-orange-600  { color: #ea580c; }
.text-orange-900  { color: #7c2d12; }
.text-red-500    { color: #ef4444; }
.text-red-600    { color: #dc2626; }
.text-red-900    { color: #7f1d1d; }
.text-purple-500 { color: #a855f7; }
.text-purple-600 { color: #9333ea; }

/* ===== BORDERS ===== */
.border        { border-width: 1px; border-style: solid; }
.border-b      { border-bottom-width: 1px; border-bottom-style: solid; }
.border-gray-100  { border-color: #f3f4f6; }
.border-gray-200  { border-color: #e5e7eb; }
.border-blue-100  { border-color: #dbeafe; }
.border-emerald-100 { border-color: #d1fae5; }
.border-orange-100  { border-color: #ffedd5; }
.border-red-100   { border-color: #fee2e2; }
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-gray-100 > * + * { border-color: #f3f4f6; }

/* ===== BORDER RADIUS ===== */
.rounded     { border-radius: 0.25rem; }
.rounded-lg  { border-radius: 0.5rem; }
.rounded-xl  { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* ===== SHADOWS ===== */
.shadow    { box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); }

/* ===== GRADIENT (nav - legacy, replaced by app-nav) ===== */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-slate-900 {
  --tw-gradient-from: #0f172a;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}
.to-blue-900 { --tw-gradient-to: #1e3a8a; }

/* ===== HOVER UTILITIES ===== */
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
.hover\:bg-gray-50:hover   { background-color: #f9fafb; }
.transition { transition: all 0.15s ease; }

/* ================================================================
   앱 커스텀 컴포넌트
   ================================================================ */

/* ── 상태 배지 ── */
.status-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.status-촬영    { background: #dbeafe; color: #1e40af; }
.status-보정중  { background: #fef3c7; color: #92400e; }
.status-납품완료 { background: #d1fae5; color: #065f46; }
.status-보류    { background: #f1f5f9; color: #475569; }
.status-취소    { background: #fee2e2; color: #991b1b; }

/* ── KPI 카드 ── */
.kpi-card {
  background: #fff;
  border-radius: 0.875rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  padding: 1.4rem 1.25rem 1.2rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(0,0,0,0.1);
}
.kpi-card-icon-wrap {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}
.kpi-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.01em;
  margin-bottom: 0.35rem;
}
.kpi-card-value {
  font-size: 1.45rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
/* 프로젝트 현황 카드 전용 확장 */
.kpi-card-status .kpi-card-value {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.kpi-card-unit {
  font-size: 0.85rem;
  font-weight: 500;
  color: #9ca3af;
  margin-left: 0.2rem;
}
.kpi-stat-row {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.kpi-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.kpi-progress-label {
  font-size: 0.7rem;
  color: #9ca3af;
  text-align: right;
  font-weight: 500;
}

/* ── 테이블 ── */
.th {
  padding: 0.65rem 1rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
}
.td {
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  vertical-align: middle;
}

/* ── 버튼 ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: #1d4ed8;
  color: #fff;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
  text-decoration: none;
}
.btn-primary:hover { background: #1e40af; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 0.85rem;
  background: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-secondary:hover { background: #f9fafb; }

.btn-cancel {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: #fff;
  color: #6b7280;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}
.btn-cancel:hover { background: #f3f4f6; }

.icon-btn {
  padding: 0.3rem 0.4rem;
  border-radius: 0.375rem;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s;
}
.icon-btn:hover { background: #f3f4f6; }

/* ── 폼 ── */
.field-wrap  { margin-bottom: 1rem; }
.field-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.35rem;
}
.field-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #111827;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s;
  outline: none;
}
.field-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* ── 모달 ── */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}
.modal-bg.hidden { display: none; }

.modal-box {
  background: #fff;
  border-radius: 0.875rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  margin: 1rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}
.modal-title { font-size: 1rem; font-weight: 600; color: #111827; }

.modal-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
  border-radius: 0.375rem;
}
.modal-close:hover { color: #374151; background: #f3f4f6; }

form { padding: 1.25rem 1.5rem; }

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  margin-top: 1rem;
}

/* ── 뒤로가기 ── */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #2563eb;
  margin-bottom: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.back-btn:hover { color: #1d4ed8; text-decoration: underline; }

/* ── 네비게이션 ── */
nav { position: sticky; top: 0; z-index: 40; }

/* ── 앱 네비게이션 (SaaS 스타일) ── */
.app-nav {
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 8px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 40;
}
.app-nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-nav-left {
  display: flex;
  align-items: center;
  gap: 0;
}
.app-nav-brand {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin-right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0;
}
.app-nav-brand i { color: #60a5fa; font-size: 0.9rem; margin-right: 0.45rem; }
.app-nav-brand-dot { color: #60a5fa; font-weight: 800; margin-left: 0; letter-spacing: -0.02em; }
.app-nav-divider {
  width: 1px;
  height: 1.25rem;
  background: rgba(255,255,255,0.12);
  margin-right: 0.75rem;
}

/* 네비게이션 버튼 */
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 0.85rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-btn i { font-size: 0.75rem; }
.nav-btn:hover {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.88);
}
.nav-btn-active {
  background: #1e40af;
  color: #fff;
}
.nav-btn-active:hover {
  background: #1d4ed8;
  color: #fff;
}
.app-nav-meta {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* ── 진행률 바 ── */
.h-1\.5 { height: 0.375rem; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-emerald-400 { background-color: #34d399; }
.bg-blue-400 { background-color: #60a5fa; }
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }

/* ── 바로가기 카드 ── */
.dash-shortcut-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .dash-shortcut-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dash-shortcut-grid { grid-template-columns: 1fr; }
}
.dash-shortcut-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 0.875rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}
.dash-shortcut-card:hover {
  box-shadow: 0 6px 20px -4px rgba(0,0,0,0.1);
  border-color: #e2e8f0;
  transform: translateY(-1px);
}
.dash-sc-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.dash-sc-body {
  flex: 1;
  min-width: 0;
}
.dash-sc-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.2rem;
}
.dash-sc-desc {
  font-size: 0.72rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-sc-arrow {
  font-size: 0.6rem;
  color: #cbd5e1;
  flex-shrink: 0;
  transition: color 0.15s, transform 0.15s;
}
.dash-shortcut-card:hover .dash-sc-arrow {
  color: #94a3b8;
  transform: translateX(2px);
}

/* ── 페이지 선택 input (select) ── */
select.field-input { appearance: auto; }

/* ── 반응형: 소형 화면 ── */
@media (max-width: 640px) {
  .modal-box { margin: 0.5rem; }
  .th, .td  { padding: 0.6rem 0.6rem; font-size: 0.8rem; }
}

/* ================================================================
   대시보드 전용 컴포넌트
   ================================================================ */

/* KPI 4열 그리드: 데스크탑 4열, 태블릿 2열, 모바일 1열 */
.dash-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  .dash-kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .dash-kpi-grid { grid-template-columns: 1fr; }
}

/* 최근목록 2열 그리드: 데스크탑 2열, 모바일 1열 */
.dash-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .dash-list-grid { grid-template-columns: 1fr; }
}

/* 패널 컨테이너 */
.dash-panel {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.875rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* 패널 헤더 */
.dash-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f9fafb;
  background: #fafafa;
}
.dash-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  font-size: 0.8rem;
}

/* 전체보기 버튼 */
.dash-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #2563eb;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 0.375rem;
  transition: background 0.15s;
}
.dash-view-all:hover { background: #eff6ff; }

/* 빈 상태 */
.dash-empty {
  padding: 2.5rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.8;
}

/* 리스트 컨테이너 */
.dash-list { padding: 0.375rem 0; }

/* 행 */
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: background 0.12s;
  gap: 0.75rem;
}
.dash-row:hover { background: #f8fafc; }

/* 행: 왼쪽 텍스트 */
.dash-row-left {
  min-width: 0;
  flex: 1;
}
.dash-row-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}
.dash-row-sub {
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.dash-row-sep { color: #d1d5db; }

/* 행: 오른쪽 */
.dash-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  flex-shrink: 0;
}

/* 매출 금액 */
.dash-rev-amount {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
}

/* 매출 상태 배지 */
.dash-rev-badge {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}
.dash-rev-done { background: #d1fae5; color: #065f46; }
.dash-rev-out  { background: #fff7ed; color: #c2410c; }
.dash-rev-over { background: #fee2e2; color: #991b1b; }
.dash-rev-none { background: #f1f5f9; color: #64748b; }

/* 프로젝트 현황 compact 전용 */
.dash-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.dash-stat-blue  { background: #eff6ff; color: #1d4ed8; }
.dash-stat-green { background: #ecfdf5; color: #065f46; }

.dash-dot {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
}

.dash-progress-track {
  height: 0.35rem;
  background: #f1f5f9;
  border-radius: 9999px;
  overflow: hidden;
}
.dash-progress-fill {
  height: 100%;
  background: linear-gradient(to right, #34d399, #059669);
  border-radius: 9999px;
  transition: width 0.4s ease;
}
