/* HAVEN_FOLIO_SELECT_R1 — one native-select language across Folio */
:root{
  --hf-select-paper:rgba(255,255,255,.90);
  --hf-select-ink:#514756;
  --hf-select-line:rgba(78,60,88,.13);
  --hf-select-accent:#6e4f9a;
}
select{
  appearance:none!important;
  -webkit-appearance:none!important;
  min-height:34px;
  box-sizing:border-box;
  border:1px solid var(--hf-select-line)!important;
  border-radius:9px!important;
  padding:7px 30px 7px 11px!important;
  background-color:var(--hf-select-paper)!important;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M2 2.25 6 5.75 10 2.25' fill='none' stroke='%23796388' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")!important;
  background-repeat:no-repeat!important;
  background-position:right 10px center!important;
  background-size:10px 7px!important;
  color:var(--hf-select-ink)!important;
  font:500 11px/1.25 Inter,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif!important;
  outline:none!important;
  box-shadow:0 2px 9px rgba(48,35,57,.018)!important;
  transition:border-color .15s ease,box-shadow .15s ease,background-color .15s ease;
  cursor:pointer;
}
select:hover{border-color:rgba(110,79,154,.25)!important;background-color:#fff!important}
select:focus{border-color:rgba(110,79,154,.38)!important;box-shadow:0 0 0 3px rgba(110,79,154,.055)!important;background-color:#fff!important}
select:disabled{opacity:.5;cursor:default}
select option{background:#fbfafc;color:#514756;font-size:12px}
