/* Scope to only the widgets you mark with className="flux-input" */
.flux-input .Select-control {
  background-color: #fff;
  color: #111;                  /* dark text on white */
  border-color: #ced4da;
  min-height: 44px;             /* bigger click target */
  font-size: 16px;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.flux-input .Select-placeholder,
.flux-input .Select--single > .Select-control .Select-value,
.flux-input .Select-value-label,
.flux-input .Select-input input {
  color: #111;
}

.flux-input .Select-menu-outer {
  background-color: #fff;
  color: #111;
  border-color: #ced4da;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.flux-input .Select-option.is-focused,
.flux-input .VirtualizedSelectFocusedOption {
  background: #f1f3f5;          /* subtle hover */
  color: #111;
}

.flux-input .Select-option.is-selected {
  background: #e7f1ff;          /* selected row */
  color: #0b5ed7;
}

.flux-input .Select-value {      /* the selected “tags” for multi */
  background: #e9ecef;
  border-color: #dee2e6;
  color: #111;
  border-radius: 8px;
}
