function pbCpnCopy(btn) { var code = btn.dataset.code; if (!code) return; navigator.clipboard && navigator.clipboard.writeText(code).then(function(){ var orig = btn.textContent; btn.textContent = '✓ Copied!'; btn.style.background = '#059669'; setTimeout(function(){ btn.textContent = orig; btn.style.background = ''; }, 2000); }); }