/* Toast notification for copy confirmation */
.copy-toast {
    position: fixed;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    background-color: rgba(50, 50, 50, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.copy-toast.show {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.copy-toast-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
}

.copy-toast-icon svg {
    width: 100%;
    height: 100%;
}

/* Reduced motion preference support */
@media (prefers-reduced-motion: reduce) {
    .copy-toast {
        transition: opacity 0.1s;
    }
}
