/* mobile-nav.css — fixed bottom tab bar + More sheet (Bootstrap-standard colours). */
.mobile-tabbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-index-fixed);
  display: flex;
  background: var(--bs-body-bg, #fff);
  border-top: 1px solid var(--bs-border-color, #dee2e6);
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.06);
}

.mobile-tabbar .mobile-tab {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 2px;
  font-size: 0.68rem;
  line-height: 1;
  color: var(--bs-secondary-color, var(--color-secondary));
  background: none;
  border: 0;
  text-decoration: none;
}

.mobile-tabbar .mobile-tab i {
  font-size: 1.15rem;
}

.mobile-tabbar .mobile-tab.active {
  color: var(--bs-primary, var(--bs-blue));
  font-weight: 600;
}

.mobile-more-link {
  display: block;
  padding: 10px 4px;
  text-decoration: none;
  color: var(--bs-body-color, #212529);
  border-bottom: 1px solid var(--bs-border-color, #f1f1f1);
}

/* Clear the fixed bar so page content isn't hidden behind it. */
@media (max-width: 991.98px) {
  body {
    padding-bottom: 64px;
  }
}
