.quantify-toast-host {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.quantify-toast {
  width: min(360px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 18px;
  align-items: start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 18, 0.98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  pointer-events: auto;
}

.quantify-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quantify-toast.is-closing {
  opacity: 0;
  transform: translateY(8px);
}

.quantify-toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  color: rgba(126, 146, 255, 0.96);
  font-size: 14px;
}

.quantify-toast-content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.quantify-toast-message {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.quantify-toast-link {
  color: rgba(143, 159, 255, 0.96);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}

.quantify-toast-link:hover {
  color: rgba(173, 185, 255, 0.98);
}

.quantify-toast-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.quantify-toast-close:hover {
  color: rgba(255, 255, 255, 0.82);
}
