/* ============================================================
   LifeFolder — Vorbereiten (Packs)
   ============================================================ */
.pack-form { margin-top: 6px; display: flex; flex-direction: column; gap: 14px; }
.pack-form__input { min-height: 110px; resize: vertical; line-height: 1.5; padding: 12px 14px; font-family: inherit; }
.pack-form__actions { display: flex; justify-content: flex-end; }

/* Beispiel-Situationen: Karten-Buttons mit Kategorie-Farbe (Feedback 2026-07-02) */
.pack-examples { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 16px 0 18px; }
.pack-example {
  display: flex; align-items: flex-start; gap: 12px; text-align: left;
  padding: 14px; border: 1px solid var(--color-line); border-radius: 14px;
  background: var(--color-surface); cursor: pointer; font: inherit; color: var(--color-muted);
  font-size: 13px; line-height: 1.45;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.pack-example:hover { border-color: var(--color-selected); color: var(--color-ink); box-shadow: var(--shadow-2); transform: translateY(-1px); }
.pack-example__icon {
  width: 40px; height: 40px; flex: none; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
}
.pack-example__text { min-width: 0; }
@media (max-width: 800px) { .pack-examples { grid-template-columns: 1fr; } }

/* Termin-Eckdaten (who/when/what) — wie doc-props */
.pack-appt { margin: 14px 0 4px; border-top: 1px solid var(--color-line-soft); }
.pack-appt__row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--color-line-soft); }
.pack-appt__row:last-child { border-bottom: none; }
.pack-appt__row dt { font-size: 13px; color: var(--color-muted-2); }
.pack-appt__row dd { margin: 0; font-size: 14px; font-weight: 600; text-align: right; }

/* Fehlende Dokumente — Amber-Akzent (Review-Status-Rolle) */
.pack-missing { border-left: 3px solid var(--status-urgent-fg); }
.pack-missing__badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--status-urgent-fg); }
.pack-missing__list { margin: 10px 0 14px; padding-left: 20px; color: var(--color-ink); font-size: 14px; }
.pack-missing__list li { margin: 3px 0; }

.pack-result__footer { display: flex; justify-content: center; margin: 20px 0 8px; }

/* „Das nimmst du mit" — abhakbare Checkliste (spiegelt das PDF-Deckblatt) */
.pack-chip { display: inline-flex; align-items: center; height: 22px; padding: 0 10px; border-radius: 999px; background: var(--color-status-bg); color: var(--color-status-fg); font-size: 12px; font-weight: 700; }
.pack-check-list { margin-top: 6px; }
.pack-check-row { display: flex; align-items: center; gap: 11px; padding: 11px 6px; border-top: 1px solid var(--color-line-soft); text-decoration: none; color: var(--color-ink); border-radius: 8px; }
.pack-check-row:first-child { border-top: none; }
.pack-check-list--tight .pack-check-row { padding: 8px 6px; }
a.pack-check-row:hover { background: var(--color-surface-2, var(--color-bg)); }
.pack-check-row--static { cursor: default; }
.pack-check-box { flex: none; width: 17px; height: 17px; border: 1.6px solid var(--color-line); border-radius: 5px; background: var(--color-surface); }
.pack-check-dot { flex: none; width: 8px; height: 8px; border-radius: 50%; }
.pack-check-main { flex: 1; min-width: 0; }
.pack-check-name { font-size: 14.5px; font-weight: 600; color: var(--color-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pack-check-meta { font-size: 12.5px; color: var(--color-muted-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
