.ngt-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  z-index: 10050;
  max-width: min(520px, calc(100vw - 32px));
  padding: 14px 22px;
  border-radius: 12px;
  background: #0f2744;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 16px 48px rgba(15, 39, 68, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.ngt-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.ngt-toast--success {
  border-left: 4px solid #aecf61;
}

.ngt-toast--error {
  border-left: 4px solid #ef4444;
  background: #7f1d1d;
}
