/* Notification Popup */
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--bgSoft);
  color: var(--text);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(150%);
  transition: transform 0.3s ease;
  z-index: 1000;
  max-width: 350px;
  overflow: hidden;
}

.notification.show {
  transform: translateY(0);
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.notification-message {
  font-size: 0.95rem;
  margin-right: 15px;
}

.notification-close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .notification {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
  }
}
