.modal{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);backdrop-filter:blur(4px);z-index:9999;align-items:center;justify-content:center;padding:1rem}.modal.active{display:flex}.modal-overlay>.modal{display:block;position:static;inset:auto;background:#fff;backdrop-filter:none;z-index:auto;padding:0}.modal-content{background:#fff;border-radius:16px;width:100%;max-width:500px;max-height:90vh;overflow-y:auto;box-shadow:0 20px 60px rgba(0,0,0,.3);animation:modal-enter .2s ease-out;z-index:10000}@keyframes modal-enter{from{opacity:0;transform:scale(.95) translateY(10px)}to{opacity:1;transform:scale(1) translateY(0)}}.modal-header{padding:2rem 2rem 1rem;text-align:center}.modal-header h3{font-size:1.3rem;color:#1a1a2e;margin:.75rem 0 .5rem}.modal-header p{color:#666;font-size:.95rem;margin:0}.modal-danger-icon{width:80px;height:80px;border-radius:50%;background:rgba(239,68,68,.1);display:flex;align-items:center;justify-content:center;margin:0 auto;font-size:2rem;color:#ef4444}.modal-warning{background:rgba(239,68,68,.1);border:1px solid rgba(239,68,68,.3);border-radius:8px;padding:.75rem;margin:0 2rem;font-size:.85rem;color:#991b1b;text-align:center}.modal-body{padding:1rem 2rem}.modal-footer{display:flex;gap:1rem;padding:1rem 2rem 2rem;justify-content:center}.modal .btn-cancel,.modal .btn-secondary{padding:.75rem 1.5rem;border:2px solid #e5e7eb;background:#fff;color:#374151;border-radius:10px;font-weight:600;cursor:pointer;transition:all .2s;font-size:.9rem}.modal .btn-cancel:hover,.modal .btn-secondary:hover{background:#f3f4f6;border-color:#d1d5db}.modal .btn-delete{padding:.75rem 1.5rem;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;border:none;border-radius:10px;font-weight:600;cursor:pointer;transition:all .2s;font-size:.9rem;display:flex;align-items:center;gap:.5rem}.modal .btn-delete:hover{background:linear-gradient(135deg,#dc2626,#b91c1c);transform:translateY(-1px);box-shadow:0 4px 12px rgba(239,68,68,.4)}@media (max-width:480px){.modal-content{max-width:none;border-radius:12px}.modal-header{padding:1.5rem 1.5rem .75rem}.modal-body{padding:.75rem 1.5rem}.modal-footer{padding:.75rem 1.5rem 1.5rem;flex-direction:column}.modal-warning{margin:0 1.5rem}}[data-theme=dark] .modal-content{background:#2d2d2d;color:#e0e0e0}[data-theme=dark] .modal-header h3{color:#e0e0e0}[data-theme=dark] .modal-header p{color:#aaa}[data-theme=dark] .modal .btn-cancel,[data-theme=dark] .modal .btn-secondary{background:#3d3d3d;border-color:#555;color:#e0e0e0}[data-theme=dark] .modal .btn-cancel:hover,[data-theme=dark] .modal .btn-secondary:hover{background:#4d4d4d}[data-theme=dark] .modal-warning{background:rgba(239,68,68,.2);color:#fca5a5}@media (prefers-reduced-motion:reduce){.modal-content{animation:none!important}}