.global-toast {
  position: fixed;
  top: 25px;
  right: 25px;

  min-width: 280px;   /* 👈 más ancho */
  max-width: 420px;

  padding: 16px 20px; /* 👈 más alto */
  border-radius: 12px;

  color: #fff;
  background: #198754;

  font-size: 15px;
  font-weight: 500;

  z-index: 99999;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);

  display: flex;
  align-items: center;
  gap: 10px;

  opacity: 0;
  transform: translateY(15px);
  transition: all 0.25s ease;

  pointer-events: none;
}

/* animación visible */
.global-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* TIPOS */
.global-toast.success {
  background: #198754;
}

.global-toast.error {
  background: #dc3545;
}

.global-toast.warning {
  background: #ffc107;
  color: #000;
}