/**
 * BidFresh — restore a visible down-arrow on every single-choice <select>.
 * Custom `background` / appearance:none rules often hide the OS and Bootstrap caret.
 * Desktop + phone. Multiple / list-box selects are left alone.
 */
select:not([multiple]):not([size]),
select[size="1"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.7rem center !important;
  background-size: 12px 10px !important;
  padding-right: 2rem !important;
}

select:not([multiple]):not([size]):disabled,
select[size="1"]:disabled {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E") !important;
}

/* Compact AM/PM and other tiny selects still need a chevron */
.rsf-ampm select,
.rsf-ampm .form-select {
  padding-right: 1.35rem !important;
  background-position: right 0.35rem center !important;
  background-size: 10px 8px !important;
}

/* Select2 keeps its own caret visible */
.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container .select2-selection--single .select2-selection__arrow {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 20px !important;
}
