/* Four-button navigation copied from the existing Android page and scoped here. */
#jamesonmanhuatouch .android2-navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(50px + env(safe-area-inset-bottom, 0px));
    padding: 0 0 env(safe-area-inset-bottom, 0px);
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
#jamesonmanhuatouch .android2-navigation .tab-item {
    flex: 1;
    width: auto;
    height: 50px;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #929292;
}
#jamesonmanhuatouch .android2-navigation .tab-item.active,
#jamesonmanhuatouch .android2-navigation .tab-item:active { color: #3b82f6; }
#jamesonmanhuatouch .android2-navigation .tab-item i { font-size: 20px; line-height: 1; }
#jamesonmanhuatouch .android2-navigation .tab-label { font-size: 11px; margin-top: 2px; line-height: normal; }
#jamesonmanhuatouch .android2-navigation ~ .content { bottom: calc(50px + env(safe-area-inset-bottom, 0px)); }
