/* mkdocs-material's default checked-checkbox green (#00e676, via
   pymdownx.tasklist's custom_checkbox) is a bright, saturated Material
   "green A400" — darken it to an olive tone for the dense roadmap
   checklists. Same selector as the theme's own rule (main.*.min.css) so
   this wins on cascade order (extra_css loads after it) without needing
   !important. */

.md-typeset [type="checkbox"]:checked + .task-list-indicator::before {
  background-color: #6b8e23;
}
