/* Bulma-style fix for custom dropdown: ensure solid background and border, readable options */
[data-searchable-select-target="list"],
.dropdown-content[data-searchable-select-target="list"] {
  background: #fff !important;
  border: 1px solid #dbdbdb !important;
  box-shadow: 0 2px 8px rgba(10,10,10,0.1);
  border-radius: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}
[data-searchable-select-target="list"] li,
.dropdown-content[data-searchable-select-target="list"] li {
  padding: 0.5em 1em;
  cursor: pointer;
  color: #363636;
  background: #fff;
  transition: background 0.15s;
}
[data-searchable-select-target="list"] li:hover,
.dropdown-content[data-searchable-select-target="list"] li:hover {
  background: #f5f5f5;
}
[data-searchable-select-target="list"] li.is-active,
.dropdown-content[data-searchable-select-target="list"] li.is-active {
  background: #3273dc;
  color: #fff;
}

