/* ============================================================
   ScInfoLabs - glass.css
   The glass / frosted effect has been REMOVED site-wide.

   This file is deliberately minimal. It kills the frosted-glass
   treatment (backdrop blur and saturation) wherever it appears,
   including the inline <style> blocks inside each page, without
   touching a single colour value.

   Colours are left alone on purpose: an earlier attempt to 'fix'
   surfaces here forced white cards under a dark theme and made
   headings unreadable. Removing the blur is enough to remove the
   glass look, and it cannot affect contrast.
   ============================================================ */

*, *::before, *::after {
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
}

.card, .comp, .panel, .detail, .mvrow, .shead, .chead, .tile, .box {
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
}

@media print {
  *, *::before, *::after {
    -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
  }
}
