.clipboard-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.clipboard-notification.show {
    transform: translateX(0);
}

.clipboard-notification.success {
    background-color: #4CAF50;
}

.clipboard-notification.error {
    background-color: #f44336;
} 