.toast {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  background: rgba(17, 18, 20, 0.86);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 650;
  font-size: 13px;
  box-shadow: var(--admin-shadow);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.toast.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.is-success {
  background: rgba(18, 93, 57, 0.94);
  border-color: rgba(98, 221, 154, 0.28);
}

.toast.is-error {
  background: rgba(125, 31, 43, 0.95);
  border-color: rgba(255, 136, 155, 0.28);
}

.toast.is-warning {
  background: rgba(119, 77, 17, 0.95);
  border-color: rgba(255, 210, 123, 0.28);
}

.toast.is-info {
  background: rgba(17, 18, 20, 0.86);
  border-color: rgba(125, 170, 255, 0.18);
}
