/* [project]/src/components/NCA-client/BottomNav.css [app-client] (css) */
.bottom-nav {
  background: var(--NCA-surface-1);
  border-top: 1px solid var(--NCA-border);
  padding: 6px 0 max(10px, env(safe-area-inset-bottom));
  z-index: 100;
  justify-content: space-around;
  align-items: center;
  display: flex;
  position: sticky;
  bottom: 0;
}

@media (min-width: 900px) {
  .bottom-nav {
    display: none;
  }
}

.bottom-nav__item {
  cursor: pointer;
  color: var(--NCA-text-ghost);
  transition: color var(--NCA-transition);
  flex-direction: column;
  flex: 1;
  align-items: center;
  gap: 3px;
  padding: 4px 12px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.bottom-nav__item--active {
  color: var(--NCA-text-primary);
}

.bottom-nav__icon {
  width: 22px;
  height: 22px;
}

.bottom-nav__label {
  font-size: 9px;
  font-weight: 500;
}

.bottom-nav__badge {
  background: var(--NCA-primary);
  color: #000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  margin-right: -20px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 0;
  right: 50%;
}

