/* Bad Wolf Advanced Filter Suite - CSS
   Filter application with conflict resolution
*/

/* 
   IMPORTANT: Using !important to prevent conflicts with other plugins
   (especially dark mode plugins that also use filters)
*/

/* Force filter application on html element */
html {
    filter: var(--badwolf-filter, none) !important;
}

/* Prevent dark mode or other plugins from removing our filter */
html[style] {
    filter: var(--badwolf-filter, none) !important;
}

/* Ensure filter applies even with nested selectors */
body {
    filter: inherit !important;
}

