/* Mobile fix for Glance (v0.8.6):
   Under 1190px width Glance hides ALL page columns and re-shows them only via
   body:has() selectors. Browsers/WebViews without :has() support (older iOS
   Safari, older Android Chrome, in-app browsers like Telegram/WhatsApp) get a
   blank page. This forces all columns visible and hides the now-useless
   bottom navigation bar, so the dashboard works on any phone browser. */
@media (max-width: 1190px) {
  .page-column { display: block !important; }
  .mobile-navigation { display: none !important; }
  .mobile-navigation-offset { display: none !important; }
}
