.toast-container {
    position: fixed; top: 20px; right: 20px; z-index: 99999;
    display: flex; flex-direction: column; gap: 8px;
}
.toast {
    padding: 12px 20px; border-radius: 8px; color: #fff; font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); animation: toastIn 0.3s ease;
    max-width: 360px; word-break: break-word; cursor: pointer;
}
.toast-success { background: #2d8c4a; }
.toast-error { background: #d94040; }
.toast-info { background: #3b82f6; }
.toast-warn { background: #f59e0b; }
@keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
