/* Global Toaster */
#toaster {
  position: fixed;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
}

.toast {
  min-width: 260px;
  max-width: 420px;
  background: #1f2937;
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid #3b82f6;
  animation: toast-in 120ms ease-out;
}

.toast--closing { opacity: 0; transition: opacity 0.2s ease-out; }

.toast__body { flex: 1; }
.toast__close {
  border: 0; background: transparent; color: inherit; font-size: 18px; cursor: pointer;
}

.toast--success { border-left-color: #10b981; }
.toast--info { border-left-color: #3b82f6; }
.toast--warning { border-left-color: #f59e0b; }
.toast--error { border-left-color: #ef4444; }

@keyframes toast-in { from { transform: translateY(-10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

