/* ============================================================
   Component: detail-list (modal içi anahtar/değer görünümü)
   ============================================================ */
.detail-list { display: flex; flex-direction: column; }
.detail-row {
  display: flex; gap: var(--space-4); padding: 9px 0;
  border-bottom: 1px solid var(--border); font-size: var(--fs-sm);
}
.detail-row:last-child { border-bottom: none; }
.detail-label { flex: 0 0 38%; color: var(--text-muted); font-weight: 600; }
.detail-val { flex: 1; color: var(--text); overflow-wrap: anywhere; }
.detail-link { display: inline-flex; align-items: center; gap: 3px; color: var(--brand); font-weight: 400; text-decoration: none; white-space: nowrap; vertical-align: -2px; }
.detail-link:hover { text-decoration: underline; }
.detail-link-ico { width: 13px; height: 13px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
