/* message.css */

.message-box {
  position: fixed;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);

  color: white;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  animation: slide-in 0.5s ease-out;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.icon {
  font-size: 20px;
}

.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
