.nativeTabBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
  z-index: 100;
}

.nativeTabItem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  font-family: 'Work Sans', sans-serif;
  padding: 4px 2px;
}

.nativeTabItem svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nativeTabItem.active {
  color: var(--primary);
}

body.nativeApp {
  padding-bottom: 76px;
}

body.nativeApp .navBar {
  display: none !important;
}
