/* W2FREEINPUT_V1 — FREE/CUSTOM line inputs legible on dark.
   The Line 1 / Line 2 / Word fields (.phr-inp) sit on a dark wrap in dark theme
   (html.w2-dark .phr-wrap -> #232323), but w2inputfix.css forces ALL inputs to
   black text+caret (#111) with high specificity, so the typed text and caret are
   invisible there. Restore the theme's light text/caret on dark only (light theme
   keeps dark text on its light wrap). Specificity intentionally exceeds the
   w2inputfix :not()-chain so this wins. */

html.w2-dark .phr-inp:not([type="range"]):not([type="checkbox"]):not([type="radio"]):not([type="color"]):not([type="button"]):not([type="submit"]):not([type="reset"]){
  color:var(--text) !important;
  -webkit-text-fill-color:var(--text) !important;
  caret-color:var(--text) !important;
}
html.w2-dark .phr-inp::placeholder{
  color:rgba(255,255,255,.42) !important;
  -webkit-text-fill-color:rgba(255,255,255,.42) !important;
  opacity:1 !important;
}
