function showModal(country, year, legality) {
const modalContent = html`
<div class="modal-content">
<span class="close" onclick=${() => closeModal()}>×</span>
<p>Country: ${country}</p>
<p>Year: ${year}</p>
<p>Legality: ${legality}</p>
<!-- Add other modal content as needed -->
</div>`;
const modal = html`<div class="modal">${modalContent}</div>`;
document.body.appendChild(modal);
}