/* 
 * Copy tooltip styles
 * Styling for the copy-to-clipboard tooltip
 */

.copy-tooltip {
  position: fixed;
  background-color: var(--dark-color);
  color: white;
  padding: 5px 10px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  animation: fadeInOut 1.5s ease forwards;
}

@keyframes fadeInOut {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}
