/* Language selector (Select2) - 简洁扁平风格 */

.language-select {
  display: inline-block;
}

/* 隐藏原生 select */
.language-select.d-hide {
  display: none !important;
}

/* Select2 主按钮 */
.select2-container--default .select2-selection--single {
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  box-shadow: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.select2-container--default .select2-selection--single:hover {
  border-color: rgba(0, 0, 0, 0.25);
}

.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #5b9bd5;
  box-shadow: 0 0 0 2px rgba(91, 155, 213, 0.15);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 30px;
  padding-left: 10px;
  padding-right: 26px;
  color: #333;
  font-size: 13px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 30px;
  right: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #666 transparent transparent transparent;
}

/* 下拉菜单 */
.select2-dropdown {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.select2-container--default .select2-results__option {
  padding: 8px 12px;
  font-size: 13px;
  color: #333;
  transition: background 0.1s;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #f0f5ff;
  color: #333;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: #e8f0fe;
  color: #1a73e8;
  font-weight: 500;
}

/* 语言选项（图标+文字） */
.lang-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-flag {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.lang-name {
  white-space: nowrap;
}

/* 保证下拉菜单不被遮挡 */
.select2-container--open {
  z-index: 9999999 !important;
}

.select2-dropdown {
  z-index: 9999999 !important;
}

/* 导航栏内的语言选择器 */
.nav-lang {
  display: flex;
  align-items: center;
}

.nav-lang .select2-container {
  min-width: 100px;
}

/* 移动端：只显示图标 */
@media (max-width: 767.98px) {
  .lang-name {
    display: none;
  }

  .nav-lang .select2-container {
    min-width: 50px;
  }

  /* navbar 顶部区域：更紧凑更圆角（跟随搜索框圆角风格） */
  .nav-lang--mobile .select2-container--default .select2-selection--single {
    height: 34px;
    border-radius: 12px;
  }

  .nav-lang--mobile .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px;
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 8px;
    padding-right: 20px;
  }
}
