/* PureWager brand token overrides. Base --sys-* tokens ship in the webpack global stylesheet (sportsbook.css). This file exists so the SSR-injected <link> resolves to valid CSS instead of the HTML fallback. Add brand-specific overrides here. */
:root{}

/* ===== PW-READABILITY-FIXES ===== */
/* Left-column "Other" quick-links (Terms, Betting Rules, Responsible Gambling, etc.)
   shipped as #1c1c1c (near-black) on the dark navy sidebar => contrast ~1.06 (invisible).
   Restore a readable muted-light tone consistent with other secondary sidebar text. */
a.category-title,
.category-title {
  color: #c8d8e8 !important;
}
a.category-title:hover,
.category-title:hover {
  color: #ffffff !important;
}
/* Login / auth form fields render white text on a near-white (#ecedf8) field
   background => typed text is invisible when the login panel opens. Use dark text. */
[data-app="LoginApp"] input,
[data-app="RegistrationApp"] input {
  color: #12213b !important;
}
[data-app="LoginApp"] input::placeholder,
[data-app="RegistrationApp"] input::placeholder {
  color: #5a6b85 !important;
}
