// 🆘 EMERGENCY CARD: Data stays in Firestore for admin emergency response.
// It is NOT displayed publicly to protect victim privacy.
// The admin/staff dashboard reads it when handling an incident.
(function hideEmergencyPanel() {
const panel = document.getElementById('emergency-panel');
if (panel) panel.style.display = 'none';
})();