/* Add additional styling for copy notification */
.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 24px;
    background-color: #00e676;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    max-width: 300px;
    word-wrap: break-word;
}

.copy-notification.error {
    background-color: #f44336;
}

.copy-notification.show {
    transform: translateX(0);
}
