/* RIGENIND - Toast post-invio */
.rigenind-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-200px);
  z-index: 99999;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  padding: 24px 32px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  transition: transform .5s cubic-bezier(.4,0,.2,1), opacity .3s;
  opacity: 0;
}
.rigenind-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.rigenind-toast.success { border-top: 5px solid #5BB04A; }
.rigenind-toast.error   { border-top: 5px solid #dc3545; }
.rigenind-toast h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: #1B4F8A;
  font-weight: 700;
}
.rigenind-toast.success h3::before {
  content: "\2705 \00a0";
}
.rigenind-toast.error h3::before {
  content: "\26A0\FE0F \00a0";
}
.rigenind-toast p {
  margin: 0;
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
}
.rigenind-toast .close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  line-height: 1;
}
.rigenind-toast .close-btn:hover { color: #333; }
