/* === Toast (no-undo) === */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 10000;
  pointer-events: none;
}

.toast {
  min-width: 320px;
  max-width: 400px;
  padding: 0.95rem 1.25rem;
  border: 1px solid #dadce0;
  border-radius: 0.75rem;
  background: #fff;
  color: #202124;
  font-size: 0.875rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: auto;
  cursor: default;
}
.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.toast-title {
  font-weight: 600;
  margin-right: 0.75rem;
}
.toast-close {
  background: none;
  border: 0;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.toast-close:hover {
  opacity: 1;
}
.toast-close svg {
  width: 16px;
  height: 16px;
}

.toast-body {
  line-height: 1.4;
  color: #5f6368;
  font-size: 13px;
}
