.navbar {
  height: calc(var(--nav-h) + var(--safe-bottom));
  padding: 5px 8px var(--safe-bottom);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: space-around;
}

.navbar__item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 3px 0;
  color: var(--c-ink-faint);
  font-size: 9px;
  font-weight: 600;
}

.navbar__item > span:last-child {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navbar__item--active {
  color: var(--c-ink);
}

.navbar__icon {
  width: 32px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.navbar__item--active .navbar__icon {
  background: var(--c-bg);
}

.navbar__icon svg {
  width: 21px;
  height: 21px;
}
