body{
  background:rgb(31, 5, 80);
  text-align:center;
  box-sizing:border-box;
  font-family:"Lato",Sans-serif;
/*   position:relative; */
}

#notificationBox {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notif {
  opacity: 0;
  transform: translateY(-10px);
  padding: 12px 18px;
  border-radius: 10px;
  color: white;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
}
.notif.show {
  opacity: 1;
  transform: translateY(0);
}
.notif.info { background-color: #2196F3; }
.notif.success { background-color: #00C853; }
.notif.warning { background-color: #FFC107; color: #222; }
.notif.error { background-color: #E53935; }
