/* ===== NOTIFICACIONES ===== */

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #022a68;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
  animation: slideIn 0.3s ease;
  animation: slideOut 0.3s ease;
}

.notification i {
  color: "green";
}
