/* Bottom tab bar */
.tab-bar {
  display: flex;
  border-top: 1px solid var(--hairline);
  background: var(--surface);
  padding-top: 8px;
  padding-bottom: 4px;
  flex-shrink: 0;
}

.tab-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  color: var(--ink-3);
  background: none;
  border: none;
  cursor: pointer;
}

.tab-bar__item--active { color: var(--accent); }

.tab-bar__label {
  font-size: 11px;
  font-weight: 500;
}

.tab-bar__item--active .tab-bar__label { font-weight: 600; }
