/* fix for 'negative' look in dark mode on create page */
html, body {
  filter: none !important;
  mix-blend-mode: normal !important;
}

html[data-theme="dark"],
html[data-theme="dark"] body {
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* Ensure specific elements don't get inverted accidentally */
html[data-theme="dark"] img,
html[data-theme="dark"] canvas, 
html[data-theme="dark"] video,
html[data-theme="dark"] .solve-canvas,
html[data-theme="dark"] .preview-grid {
  filter: none !important;
}
