/**
 * feature-flags.css — VeraCita feature-flag visibility gate
 *
 * Any element marked data-feature-disabled="true" by the feature-flag
 * registry (window.VC_APP_FEATURES) or by individual modules (like
 * share-modal.js) is unconditionally hidden. This mirrors the same rule
 * in apps/website/app/css/account.css:8 for the account page.
 *
 * P5 note: share-modal.js sets data-feature-disabled="true" on all
 * [data-feature="encryptedSharing"] elements at DOMContentLoaded if the
 * flag is absent or false, preventing the Share button from appearing
 * until the flag is explicitly flipped (by P7 or by DevTools for dogfooding).
 */

[data-feature-disabled="true"] {
    display: none !important;
}
