2   Svelte allows to set ':global(rule)' in components which get added to the bundle.css
 
   3   file. https://svelte.dev/docs#style But the rules get added to the top of bundle.css,
 
   4   before we load the Bootstrap CSS rules. We want to have our rules at the end of
 
   8 a { text-decoration: none }
 
   9 a:hover { text-decoration: underline; }
 
  10 a.btn:hover { text-decoration: none; }
 
  12 html[data-bs-theme=dark] img.mapicon {
 
  13   /* invert the image colors */
 
  14   filter: invert(1) hue-rotate(180deg);
 
  15   background-color: transparent;