.system-confirm-dialog { display: none; position: fixed; inset: 0; z-index: 20000; align-items: center; justify-content: center; padding: 20px; }
.system-confirm-dialog.open { display: flex; }
.system-confirm-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, .62); }
.system-confirm-panel { position: relative; width: min(420px, 100%); padding: 26px; border-radius: 14px; background: #fff; color: #243746; box-shadow: 0 18px 50px rgba(0, 0, 0, .28); text-align: center; font-family: inherit; }
.system-confirm-icon { width: 42px; height: 42px; margin: 0 auto 12px; border-radius: 50%; background: #eaf4ff; color: #2583c5; font-size: 28px; line-height: 42px; font-weight: 700; }
.system-confirm-panel h2 { margin: 0 0 10px; font-size: 21px; }
.system-confirm-message { margin: 0; color: #637381; line-height: 1.5; white-space: pre-line; }
.system-confirm-actions { display: flex; gap: 10px; justify-content: center; margin-top: 22px; }
.system-confirm-actions button { min-width: 110px; padding: 10px 16px; border: 0; border-radius: 8px; font: inherit; font-weight: 700; cursor: pointer; }
.system-confirm-cancel { background: #edf1f4; color: #44515c; }
.system-confirm-accept { background: #2583c5; color: #fff; }
.system-confirm-actions button:focus-visible { outline: 3px solid rgba(37, 131, 197, .35); outline-offset: 2px; }
