 #notification {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 90%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
  }
.notification {
  background-color: #f0f0f0;
  color: #333;
  border:solid 2px #333;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 10px;
  min-width: 300px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: auto;
}
.notification.show {
  animation: slideDown 0.4s ease-out forwards;
}
@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(-0);
  }
}
.notification-button-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  margin-left: 12px;
  color: #555;
}
.notification-button-close:hover {
  color: #000;
}