/*
 * Fox Core UI — placeholder colour for the Contact Form 7 "service" dropdown.
 *
 * Ported from x_custom_styles on 14 Aug 2026, where these two rules were
 * byte-identical on all six sites. `cf7-select.js` adds and removes the
 * `option-selected` class; without it these rules do nothing useful.
 *
 * ⚠️ Checked before porting: NOTHING else on the rendered page sets `color` on a
 * CF7 select, on any of the six. The nearby `.wpcf7-form select:focus` rule sets
 * `border-color`, not `color`. So `.wpcf7-select` at (0,1,0) is uncontested and
 * needs no specificity bump — unlike `.gallery-grid`, which lost to `.x-col` on
 * source order when it moved out of Cornerstone. Re-check the same way before
 * assuming that stays true.
 */

/* The prompt option ("Choose Service") reads as placeholder text. */
.wpcf7-select {
  color: #CACACA;
}

/* A real choice reads as normal input text. */
.wpcf7-select.option-selected {
  color: #555;
}
