#notification {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 280px;
  max-width: 380px;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-base);
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  z-index: 100000;
}

#notification .notification-close {
  position: absolute;
  top: 6px;
  right: 10px;
  cursor: pointer;
  color: #fff;
  opacity: 0.8;
}

#notification .notification-close:hover {
  opacity: 1;
}
