/* ─── KPI ROW ─────────────────────────────────── */
.kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 14px;
  margin-bottom: 20px;
}

.kpi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.kpi-heading {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.kpi-val {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}

.kpi-bar {
  height: 6px;
  background: var(--primary-light);
  border-radius: 999px;
  margin-bottom: 8px;
  overflow: hidden;
}

.kpi-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
  transition: width 0.5s ease;
}

.kpi-note { font-size: 11px; color: var(--text-muted); }
.kpi-note.trend-up { color: #16a34a; font-weight: 600; }

.deadline-card { background: #fffbeb; border-color: #fde68a; }
.deadline-text { font-size: 12px; color: #92400e; margin-bottom: 12px; line-height: 1.5; }

.days-left-wrap { display: flex; align-items: baseline; gap: 5px; }
.days-num { font-size: 30px; font-weight: 700; color: #92400e; }
.days-label { font-size: 11px; font-weight: 700; color: #b45309; text-transform: uppercase; }

/* ─── COMBO LIST ──────────────────────────────── */
.combo-grid {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.combo-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.12s;
}

.combo-list-item:last-child { border-bottom: none; }
.combo-list-item:hover { background: #f8faf9; }

.combo-folder-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.combo-folder-icon.ok { background: var(--ok-bg); color: #4d6b10; }
.combo-folder-icon.warn { background: var(--warn-bg); color: #d97706; }
.combo-folder-icon.danger { background: var(--danger-bg); color: #dc2626; }
.combo-folder-icon.neutral { background: var(--neutral-bg); color: #94a3b8; }

.combo-list-info { flex: 1; min-width: 0; }

.combo-list-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.combo-list-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

.combo-list-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.combo-list-bar-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.combo-list-bar {
  width: 72px;
  height: 4px;
  background: var(--primary-light);
  border-radius: 999px;
  overflow: hidden;
}

.combo-list-bar-fill {
  height: 100%;
  border-radius: 999px;
}

.fill-ok { background: #95C11F; }
.fill-warn { background: #f59e0b; }
.fill-danger { background: #ef4444; }
.fill-neutral { background: #c8d4b8; }

.combo-list-pct { font-size: 11px; font-weight: 700; color: var(--text-muted); width: 30px; text-align: right; }

.combo-list-chevron { color: var(--text-light); }

.combo-delete-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  border: none;
  background: none;
  color: #cbd5e1;
  cursor: pointer;
  opacity: 0;
  transition: opacity .15s, color .15s, background .15s;
  flex-shrink: 0;
}
.combo-list-item:hover .combo-delete-btn { opacity: 1; }
.combo-delete-btn:hover { background: #fef2f2; color: #ef4444; }
