/* Copy flash animation for summary sections */
.copy-flash {
    animation: copy-highlight 0.8s ease-in-out;
    border-radius: 4px;
}

@keyframes copy-highlight {
    0% {
        background-color: transparent;
    }
    30% {
        background-color: rgba(89, 74, 226, 0.18);
    }
    100% {
        background-color: transparent;
    }
}
