.mensaje-alerta-contenedor {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  width: min(24rem, calc(100% - 2rem));
  display: grid;
  gap: 0.75rem;
  pointer-events: none;
}

.mensaje-alerta {
  pointer-events: auto;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  border: 1px solid transparent;
  background: #ffffff;
  color: #1f2937;
}

.mensaje-alerta--success {
  border-color: #86efac;
  background: #f0fdf4;
  color: #166534;
}

.mensaje-alerta--error {
  border-color: #fca5a5;
  background: #fef2f2;
  color: #991b1b;
}

.mensaje-alerta--warning {
  border-color: #fcd34d;
  background: #fffbeb;
  color: #92400e;
}

.mensaje-alerta--info {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1e40af;
}
