.import-msg {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  background: #111;
  color: #ffd700;
  font-weight: bold;
  padding: 0.9rem 1.4rem;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.5);
  z-index: 9999;
  font-size: 0.95rem;
  animation: fadeInSlide 0.4s ease-out;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}