/* Toast notifications */
.toast-container { position: fixed; top: 16px; right: 16px; display: flex; flex-direction: column; gap: 8px; z-index: 100; pointer-events: none; }
.toast { pointer-events: auto; background: #111827; color: #f9fafb; border-radius: 10px; padding: 10px 12px; box-shadow: 0 12px 24px rgba(15,23,42,0.3), 0 0 0 1px rgba(148,163,184,0.2); font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px; animation: toast-in 180ms ease-out; }
.toast.success { background: #166534; }
.toast.info { background: #1f2937; }
.toast.error { background: #b91c1c; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
