/* notification.css - Estilo para notificaciones flotantes, siguiendo el look de UnityPanda */

/* Notificación: fondo sólido, sin degradado */
/* notification.css - Estilo para notificaciones flotantes, siguiendo el look de UnityPanda */

.notification {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 9999;
   min-width: 280px;
  max-width: 400px;
  padding: 1.1rem 1.5rem 1.1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(30,30,30,0.18), 0 2px 8px 0 rgba(212,175,55,0.13);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #fff;
   background: #232e3c;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(-20px);
}

.notification.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

 .notification.success {
   background: #22c55e;
}

 .notification.error {
   background: #ef4444;
}

 .notification.info {
   background: #3b82f6;
}

.notification .notification-icon {
  font-size: 1.5rem;
  margin-right: 0.7rem;
}

.notification .notification-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  margin-left: auto;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.notification .notification-close:hover {
  opacity: 1;
}
