/* Force readable tags/chips/select text in Django admin for our custom widgets */
.select2-container .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--single .select2-selection__rendered,
select[multiple],
.related-widget-wrapper select,
.vTextField,
.vSelectMultipleField,
.vForeignKeyRawIdAdminField {
  color: #000 !important;
  background-color: #fff !important;
}

/* Chips inside tag-like multi widgets */
.select2-selection__choice__display,
.select2-selection__choice__remove {
  color: #000 !important;
}

/* Help text readability */
.help, .help-tooltip { color: #3a3a3a !important; }


