/* Hardening UI: menghalangi drag/simpan gambar via gestur browser (bukan anti DevTools) */
#app img,
#app svg,
#app image {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Form & input tetap bisa dipilih (RSVP, salin rekening) */
#app input,
#app textarea,
#app select,
#app button,
#app .form-control,
#app [contenteditable="true"] {
  -webkit-user-select: text !important;
  user-select: text !important;
}

/* Teks undangan boleh disalin; blur non-essential bisa ditambah per section jika perlu */
#app .editable {
  -webkit-user-select: text;
  user-select: text;
}
