.toast-container{position:fixed;top:2rem;right:2rem;z-index:10000;display:flex;flex-direction:column;gap:1rem;pointer-events:none}.toast-premium{pointer-events:auto;min-width:300px;max-width:400px;background:white;border-radius:1.6rem;padding:1.6rem;box-shadow:0 10px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);display:flex;align-items:center;gap:1.5rem;border:1px solid var(--border-color);animation:toastSlideIn .3s cubic-bezier(.16,1,.3,1);position:relative;overflow:hidden}@keyframes toastSlideIn{0%{transform:translateX(100%);opacity:0}to{transform:translateX(0);opacity:1}}.toast-premium.hide{animation:toastSlideOut .3s forwards}@keyframes toastSlideOut{to{transform:translateX(120%);opacity:0}}.toast-icon{width:4rem;height:4rem;border-radius:1.2rem;display:flex;align-items:center;justify-content:center;flex-shrink:0}.toast-content{flex:1 1}.toast-content h4{font-size:1.4rem;font-weight:800;margin-bottom:.2rem;color:var(--text-primary)}.toast-content p{font-size:1.2rem;color:var(--text-secondary);line-height:1.4}.toast-premium.success .toast-icon{background:#dcfce7;color:#16a34a}.toast-premium.error .toast-icon{background:#fee2e2;color:#ef4444}.toast-premium.info .toast-icon{background:#eff6ff;color:#3b82f6}.toast-premium.warning .toast-icon{background:#fff7ed;color:#f97316}.toast-progress{position:absolute;bottom:0;left:0;height:3px;background:currentColor;opacity:.3;width:100%;transform-origin:left;animation:toastProgress linear forwards}@keyframes toastProgress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}.confirm-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(15,23,42,.6);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);display:flex;align-items:center;justify-content:center;z-index:10001;padding:2rem;animation:fadeIn .2s ease}.confirm-modal{width:100%;max-width:400px;background:white;border-radius:2.4rem;padding:3rem;text-align:center;box-shadow:var(--shadow-xl);border:1px solid var(--border-color);animation:modalScaleIn .3s cubic-bezier(.16,1,.3,1)}.confirm-icon-wrapper{width:6.4rem;height:6.4rem;background:#fff7ed;color:#f97316;border-radius:2rem;display:flex;align-items:center;justify-content:center;margin:0 auto 2.5rem}.confirm-modal h3{font-size:2rem;font-weight:800;color:var(--text-primary);margin-bottom:1rem}.confirm-modal p{font-size:1.4rem;color:var(--text-secondary);line-height:1.6;margin-bottom:3rem}.confirm-actions{display:flex;gap:1.2rem}.confirm-actions button{flex:1 1;padding:1.4rem;border-radius:1.2rem;font-weight:800;font-size:1.4rem;cursor:pointer;transition:all .2s}.btn-confirm-cancel{background:#f1f5f9;color:#64748b;border:none}.btn-confirm-cancel:hover{background:#e2e8f0}.btn-confirm-ok{background:var(--primary-color);color:white;border:none;box-shadow:0 4px 12px rgba(37,99,235,.2)}.btn-confirm-ok:hover{filter:brightness(.9);transform:translateY(-2px)}.btn-confirm-ok.danger{background:#ef4444;box-shadow:0 4px 12px rgba(239,68,68,.2)}