/* ============================================================================
 * RNP Indico customization — LGPD/privacy adjustments.
 *
 * Hides Phone and Address fields on the user profile page (/user/profile/).
 * Relies on Indico's Flask-WTF ID convention "finalfield-<name>".
 * Verified identical on Indico v3.3.8 and v3.3.12 (July 2026).
 * On future Indico upgrades, re-verify these IDs before assuming this works.
 * ============================================================================ */

.ui.form .field:has(#finalfield-phone),
.ui.form .field:has(#finalfield-address) {
    display: none !important;
}
