/* Left-menu icon for the "HR-ассистент" item. The item is rendered with a
   stable data-id equal to its menu_item_id — crc32('ithive.hrassistant') =
   3711657463, set by MenuToFile — so it does not depend on the per-portal bot
   id in the link. Injected on main:OnEpilog by MessengerAssetHandler; selectors
   match only this item.

   Contrast with the sidebar background:
   - hrassistant_light.svg = dark/black glyph, for LIGHT/default themes;
   - hrassistant_dark.svg  = white glyph, for DARK themes (Air or classic,
     expanded or sliding/collapsed menu). */

/* Light / default theme (light sidebar) → dark glyph. */
li[data-id="3711657463"] .menu-item-icon {
    background-image: url("/images/ithive.hrassistant/icon/hrassistant_light.svg");
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0;
}

/* Any dark theme (dark sidebar), any menu mode → white glyph. */
.bitrix24-dark-theme li[data-id="3711657463"] .menu-item-icon,
.bitrix24-dark-theme .menu-sliding-mode li[data-id="3711657463"] .menu-item-icon,
.template-air.bitrix24-dark-theme li[data-id="3711657463"] .menu-item-icon,
.template-air.bitrix24-dark-theme .menu-sliding-mode li[data-id="3711657463"] .menu-item-icon {
    background-image: url("/images/ithive.hrassistant/icon/hrassistant_dark.svg");
}
