.person-delete {
    position: absolute; right: 10px; bottom: 8px; width: 25px; height: 25px;
    display: grid; place-items: center; border: 1px solid #f1aaa5; border-radius: 8px;
    background: #fff0ef; color: #c8322d; font-size: 15px; font-weight: 900;
    cursor: pointer; box-shadow: 0 4px 12px rgba(180,35,30,.1); transition: .18s;
}
.person-delete:hover { color: #fff; background: #d93631; border-color: #d93631; transform: translateY(-1px) scale(1.06); }
.details-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.details-delete-action { color: #bd302b; border-color: #efb2ae; }
.delete-confirm-modal { position: relative; width: min(470px,calc(100% - 32px)); margin: 12vh auto; padding: 34px; text-align: center; background: var(--card); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 30px 80px #0005; }
.delete-confirm-modal h2 { margin: 8px 0 10px; }
.delete-confirm-modal p { color: var(--muted); line-height: 1.6; }
.delete-warning-icon { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 14px; border-radius: 50%; background: #ffebe9; color: #c8322d; font-size: 28px; }
.danger-eyebrow { color: #c8322d; }
.confirm-delete-button { border: 0; border-radius: 10px; background: linear-gradient(135deg,#df4039,#b92520); color: #fff; padding: 13px 20px; font-weight: 800; cursor: pointer; box-shadow: 0 8px 20px rgba(190,38,32,.25); }
