/* app/assets/stylesheets/copy_animation.css */
.copy-notification {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #10b981;
    opacity: 0;
    transform: translateY(10px);
    margin-left: 8px;
}
.copy-visible {
    animation: popIn 0.3s ease-out forwards;
}
.copy-exit {
    animation: fadeOut 0.3s ease-in forwards;
}
@keyframes popIn {
    0% { opacity: 0; transform: translateY(10px) scale(0.9); }
    70% { opacity: 1; transform: translateY(-2px) scale(1.1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(5px); }
}
