How to do center text of Select with CSS?

import panel as pn

css = """
"""
pn.extension(raw_css=[""])

pn.widgets.Select(options=["a", "b"])
import panel as pn
css = """

.bk.bk-input {
  font-size: 50px;
  text-align: center;
  height: 200px;
  width: 200px;
  line-height: 100px;
  text-align: center;
  border: 2px dashed #f69c55;
}

"""
pn.extension(raw_css=[css])
pn.widgets.Select(options=["a", "b"])

Couldn’t get align to workimage

Hi @ahuang11

Check out if css - Is it possible to center text in select box? - Stack Overflow can solve the problem. And let us know.