{
const endY = event.changedTouches[0].clientY;
const swipeDistance = endY - startTouchY;
// Check if the swipe distance is significant enough to be considered a 'swipe down'
if (swipeDistance > 50) { // Adjust 50 to your sensitivity needs
popupShown = false;
}
}">