/* Shared form-control styles loaded by both base layouts.
 *
 * .stn-chevron-select — unified custom dropdown chevron used wherever a
 * native <select> appears alongside our serif/Stone palette. Lifted here
 * from the per-page <style> blocks in requote_prefilled.html and
 * saved_product_detail.html so the rule lives in one place.
 *
 * SVG data-URI keeps the chevron inline (no extra HTTP request); the
 * stroke colour matches Stone-500 (#8A8A84) and the right-side padding
 * leaves room so the chevron never overlaps the option text.
 */
.stn-chevron-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%238A8A84' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.2rem auto;
  padding-right: 3.2rem;
}
