#toast-container {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: auto;
  white-space: nowrap;
  max-width: calc(100vw - 2rem);
  white-space: normal;
  text-align: center;
}

.toast-action {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.toast-action:hover {
  background: rgba(255,255,255,0.35);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-info { background: #1A232E; }
.toast-success { background: #6B8A3F; }
.toast-warning { background: #B8863A; }
.toast-error { background: #c0392b; }
