/* Mobil: alt tab bar viewport ile hizalansın; içerik tab'ın altında kalmasın (100vh / sabit footer satırı sorunları). */
html.is-mobile,
html.is-mobile body {
    min-height: 100vh;
    min-height: 100dvh;
}

html.is-mobile #root.layout-bc {
    min-height: 100vh;
    min-height: 100dvh;
}

html.is-mobile .layout-bc:not(.hide-tab-navigation-footer-mobile) .layout-content-holder-bc {
    padding-bottom: calc(var(--tab-navigation-height, 49px) + env(safe-area-inset-bottom, 0px));
}
