.copy-notification {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 118, 163, 0.95);
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: 'Chillax-Regular';
  font-size: 1.2vw;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999999;
  width: auto; 
  min-width: 300px;
  max-width: 80%; 
}

.copy-notification.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.copy-notification .toast-message {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.copy-notification .toast-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.copy-notification .toast-icons a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.copy-notification .toast-icons a:hover {
  color: #00ffcc;
}

.copy-notification i {
  font-size: 1.5vw;
}


@media (max-width: 768px) {
  .copy-notification {
    font-size: 4vw; 
    padding: 16px 28px;
    min-width: 250px;
    max-width: 90%;
    bottom: 80px;
  }

  .copy-notification i {
    font-size: 6vw; /* bigger icons */
  }

  .copy-notification .toast-icons a {
    font-size: 5vw;
  }
}
