/* ── ObjektWarn-Dialog ───────────────────────────────────────────────────────
   1:1 zu ObjektWarnDialog.xaml: Warn-Icon + Titel, Nachricht, „nicht mehr
   anzeigen"-Checkbox, Fuß mit Abbrechen | Überschreiben. Klein, zentriert. */
.objwarn-dialog { width: 460px; max-width: 94vw; }
.objwarn-kopf { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.objwarn-icon { width: 34px; height: 34px; flex: none; display: flex;
  align-items: center; justify-content: center; font-size: 18px; color: var(--akzent);
  background: var(--bg-tief); border: 1px solid var(--akzent); border-radius: 6px; }
.objwarn-titel { font-size: 14px; font-weight: 600; }
.objwarn-text { color: var(--text-2); font-size: 13px; line-height: 20px; margin: 0 0 12px; }
.objwarn-check { margin-top: 4px; }
.objwarn-fuss { display: flex; justify-content: flex-end; gap: 8px; margin-top: 16px; }

/* Löschen-mit-Referenzen (dieselbe Warn-Hülle): Liste der betroffenen Positionen. */
.loeschref-dialog { width: 500px; max-width: 94vw; }
.loeschref-liste { max-height: 130px; overflow-y: auto; margin-top: 4px;
  background: var(--bg-tief); border: 1px solid var(--rand); border-radius: 6px; }
.loeschref-eintrag { padding: 6px 12px; font-family: Consolas, monospace; font-size: 11px;
  color: var(--text-2); border-bottom: 1px solid var(--rand-fein); }
.loeschref-eintrag:last-child { border-bottom: none; }
