/* 你的基础样式 + 一点点增强 */
.lgselector{
  font-size: 12px; /* x-small 也行。这里用 12px 更稳定 */
  margin-right: 10px;
  text-align: end;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.lgselector a{border-bottom: none;/* opacity:.85; */}
.lgselector a:hover{ opacity:1; }
.lgselector .sep{ opacity:.5; }

/* 放到 Menu 左边（你站点结构：#nav .special > ... + <a class="menuToggle">） */
#nav .special > .lgselector{ float:left; margin-right:10px; }

/* 小屏适配 */
@media (max-width:736px){
  #nav .special > .lgselector{margin-right:6px;font-size:11px;padding-right: 10px;}
}

/* 可选：根据 <html lang="..."> 高亮当前语言 */
html[lang="en"] .lgselector a[lang="en"],
html[lang="fr"] .lgselector a[lang="fr"]{
  font-weight: 700;
  text-decoration: underline;
  opacity: 1;
}
