.bot-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.bot-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  text-decoration: none;
  color: #a1a1aa;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.bot-nav-link:hover,
.bot-nav-link.active {
  color: #f3f4f6;
  background: rgba(255, 255, 255, 0.06);
}

.bot-nav-avatar-wrap {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bot-nav-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.bot-nav-avatar-fallback {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bot-nav--sidebar {
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
}

.bot-nav--sidebar .bot-nav-link {
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
}
