/* =========================================================================
   WRITESTYLE_DARK.CSS — dark-theme overrides for the writer app.
   Most dark styling now flips automatically via the .darkTheme token
   overrides in css/basic_dark.css. This file holds the few rules that
   cannot be expressed with tokens (e.g. hardcoded SVG arrow colors).
   ========================================================================= */

/* <select> dropdown arrow: in dark the control background is tan (--ink),
   so the arrow must be dark to stay visible.
.darkTheme Select{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%232e2215' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.lightTheme Select{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23d9b997' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}*/
