.alert-notification-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #082448;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
  z-index: 9999999;
}

.alert-notification-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.alert-notification-popup img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.a-n-info p {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
}

.a-n-info small {
  color: #94a3b8;
}