.custom-modal-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);display:flex;justify-content:center;align-items:center;z-index:2000;animation:fadeIn .2s ease-out}.custom-modal-content{background:#fff;padding:2rem;border-radius:16px;width:90%;max-width:400px;text-align:center;box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);transform:scale(.95);animation:scaleIn .2s ease-out forwards}.custom-modal-content.danger{border-top:4px solid #ef4444}.custom-modal-content.info{border-top:4px solid #3b82f6}.custom-modal-content.success{border-top:4px solid #10b981}.icon-wrapper{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;font-size:1.5rem}.danger .icon-wrapper{background:#fef2f2;color:#ef4444}.info .icon-wrapper{background:#eff6ff;color:#3b82f6}.success .icon-wrapper{background:#ecfdf5;color:#10b981}.custom-modal-content h3{margin-bottom:.5rem;font-size:1.25rem;color:#111827}.custom-modal-content p{color:#6b7280;margin-bottom:2rem;font-size:.95rem}.modal-actions{display:flex;gap:1rem;justify-content:center}.modal-actions button{padding:.6rem 1.2rem;border-radius:8px;font-weight:500;cursor:pointer;transition:all .2s;font-size:.95rem}.btn-cancel{background:#fff;border:1px solid #d1d5db;color:#374151}.btn-cancel:hover{background:#f3f4f6;color:#111827}.btn-confirm{border:none;color:#fff;box-shadow:0 4px 6px -1px rgba(0,0,0,.1)}.btn-confirm.danger{background:#ef4444}.btn-confirm.danger:hover{background:#dc2626}.btn-confirm.info{background:#3b82f6}.btn-confirm.info:hover{background:#2563eb}.btn-confirm.success{background:#10b981}.btn-confirm.success:hover{background:#059669}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes scaleIn{0%{transform:scale(.95);opacity:0}to{transform:scale(1);opacity:1}}