/* Small app-wide fixes on top of Bootstrap and vendor styles */

/* Tom Select's bootstrap5 theme hardcodes light-theme text colours on
   the dropdown and on the control (which the search input inherits)
   while the backgrounds follow the Bootstrap theme; make the text
   follow the theme too. The selected-item chips keep their own
   light background and dark text and stay readable in both themes. */
.ts-dropdown,
.ts-control,
.ts-control input {
    color: var(--bs-body-color);
}

.ts-dropdown {
    border-color: var(--bs-border-color);
}
