.custom-notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  display: none; /* Initially hidden */
  z-index: 1000; /* Ensure it's on top */
}

.custom-notification.show {
  display: block;
}
