/* 
 * Translation Helper Styles
 * These styles help manage multilingual content display
 */

/* Hide elements marked with data-no-translation when in French mode */
html[lang="fr"] [data-no-translation="fr"] {
    display: none !important;
}

/* Hide elements marked with data-no-translation when in English mode */
html[lang="en"] [data-no-translation="en"] {
    display: none !important;
}