.toast{position:fixed;top:100px;right:20px;display:flex;align-items:center;gap:.75rem;padding:1rem 1.25rem;border-radius:8px;box-shadow:0 4px 20px rgba(0,0,0,.15);z-index:10000;animation:slideInRight .3s ease,fadeOut .3s ease forwards;animation-delay:0s,2.7s;min-width:280px;max-width:400px;font-weight:500}@keyframes slideInRight{0%{transform:translateX(400px);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes fadeOut{to{opacity:0;transform:translateX(400px)}}.toast-success{background:linear-gradient(135deg,#10b981,#059669);color:white}.toast-error{background:linear-gradient(135deg,#ef4444,#dc2626);color:white}.toast-warning{background:linear-gradient(135deg,#f59e0b,#d97706);color:white}.toast-info{background:linear-gradient(135deg,#3b82f6,#2563eb);color:white}.toast-icon{font-size:1.25rem;font-weight:700;flex-shrink:0;width:24px;height:24px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.2);border-radius:50%}.toast-message{flex:1 1;font-size:.95rem}.toast-close{background:transparent;border:none;color:white;font-size:1.5rem;cursor:pointer;padding:0;width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:background .2s ease;line-height:1}.toast-close:hover{background:rgba(255,255,255,.2)}@media (max-width:640px){.toast{right:10px;left:10px;min-width:auto;max-width:none}}.toast-container{position:fixed;top:100px;right:20px;z-index:10000;display:flex;flex-direction:column;gap:1rem;pointer-events:none}.toast-container>*{pointer-events:all}@media (max-width:640px){.toast-container{right:10px;left:10px;top:80px}}