/* /css/dialog.css */
.dlg-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.45);display:flex;align-items:center;justify-content:center;z-index:10000;opacity:0;pointer-events:none;transition:opacity .25s}
.dlg-backdrop.show{opacity:1;pointer-events:auto}
.dlg-backdrop.hidden{display:none}
.dlg{width:min(520px,92vw);background:#0b1220;color:#eaeef7;border:1px solid rgba(255,255,255,.08);border-radius:18px;box-shadow:0 30px 70px rgba(0,0,0,.45);padding:18px 18px 14px}
.dlg-hd{display:flex;align-items:center;gap:10px;margin-bottom:6px}
.dlg-dot{width:10px;height:10px;border-radius:50%}
.dlg-dot.info{background:#2563eb}
.dlg-dot.success{background:#16a34a}
.dlg-dot.warn{background:#ca8a04}
.dlg-dot.error{background:#dc2626}
.dlg-title{font-weight:800;letter-spacing:.2px}
.dlg-msg{opacity:.95;line-height:1.45;margin:8px 0 14px;font-size:14.5px}
.dlg-ft{display:flex;justify-content:flex-end;gap:10px}
.dlg-btn{min-width:96px;padding:10px 14px;border-radius:12px;border:1px solid rgba(255,255,255,.12);background:#111a2e;color:#fff;cursor:pointer;transition:transform .08s ease,opacity .2s}
.dlg-btn:disabled{opacity:.6;cursor:not-allowed}
.dlg-btn:not(:disabled):active{transform:translateY(1px)}
