/* Notification container */
.js-notify-container {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

/* Notification box */
.js-notify {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  opacity: 0;
  transform: translateX(100%);
  animation: slideIn 0.4s forwards;
  position: relative;
}

/* Notification types */
.js-notify.success { background: #4caf50; }
.js-notify.error { background: #f44336; }
.js-notify.info { background: #2196f3; }
.js-notify.warning { background: #ff9800; }

/* Close button */
.js-notify .close-btn {
  cursor: pointer;
  margin-left: 10px;
  font-weight: bold;
}

/* Slide-in animation */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide-out animation */
@keyframes slideOut {
  to {
    opacity: 0;
    transform: translateX(120%);
  }
}