/* Hide all countries in the dropdown */
select[name="new_church_address[country]"] option {
  display: none;
}

/* Explicitly show US and Canada */
select[name="new_church_address[country]"] option[value="Canada"],
select[name="new_church_address[country]"] option[value="United States"] {
  display: block;
}

/* Ensure the default "Select a country" option is visible */
select[name="new_church_address[country]"] option[value=""] {
  display: block;
}
