/* ─── زر تغيير اللغة المشترك لجميع الصفحات ─── */
#lang-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

#lang-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

#lang-toggle-btn:active {
  transform: translateY(1px);
}

@media (max-width: 480px) {
  #lang-toggle-btn span#lang-label {
    display: none;
  }
}
