/* lang-switcher.css — 언어 셀렉터 위젯 */
#lang-switcher {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

#lang-switcher select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: inherit;
  cursor: pointer;
  font-size: 12px;
  font-family: inherit;
  line-height: 1;
  padding: 4px 22px 4px 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  outline: none;
  transition: border-color 0.15s;
}

#lang-switcher select:hover,
#lang-switcher select:focus {
  border-color: rgba(255, 255, 255, 0.55);
}

/* 다크 헤더 대응 */
.hdr #lang-switcher select {
  color: var(--text, #e8e8e8);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
  #lang-switcher {
    margin-left: 6px;
  }
  #lang-switcher select {
    font-size: 11px;
    padding: 3px 18px 3px 6px;
  }
}
