function calculateWeightLoss() {
const currentWeight = document.getElementById('current-weight').value;
const potentialWeightLoss = currentWeight * 0.15;
document.getElementById('potential-weight-loss').textContent = `Potential Weight Loss: ${potentialWeightLoss.toFixed(2)} pounds`;
}