.cute-toast { position: fixed; top: 20px; right: 20px; z-index: 99999; padding: 12px 20px; border-radius: 8px; color: #fff; font-size: 14px; animation: slideIn 0.3s; }
.cute-toast.success { background: #28a745; }
.cute-toast.error { background: #dc3545; }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
