/* styles/page-background/page-background-solid-override.css
   SpinChoice — Solid site background override (does NOT edit gradient logic)
*/

/* When enabled: force a solid background everywhere */
html[data-page-bg-solid="1"],
html[data-page-bg-solid="1"] body{
  background: var(--sc-page-bg-solid, #0b0b10) !important;
  background-image: none !important;
}

/* If your gradient is drawn on pseudo elements, disable them too */
html[data-page-bg-solid="1"] body::before,
html[data-page-bg-solid="1"] body::after,
html[data-page-bg-solid="1"] html::before,
html[data-page-bg-solid="1"] html::after{
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}
