/* Entry file to import MUX tokens and styles using CSS cascade layers.
   Keep this file small and import it from the app entry so we can control
   layer ordering without changing many files. */

@layer tokens, mux, overrides;

/* Token CSS (fonts / design tokens) */

/* MUX compiled CSS in the highest-precedence layer */

/* Override legacy global anchor styles that make MUX Footer links invisible.
   The legacy _typography.scss sets all 'a' tags to dark colors (font-default),
   which makes links invisible on the dark MUX Footer background. */
@layer overrides {
  .mux-Footer a,
  .mux-Footer .mux-TextLink {
    color: var(--cds-color-neutral-light-dark-3);
  }
  
  .mux-Footer a:hover,
  .mux-Footer a:focus,
  .mux-Footer .mux-TextLink:hover,
  .mux-Footer .mux-TextLink:focus {
    color: var(--cds-color-neutral-light-light-3);
  }
}


/*# sourceMappingURL=bookingCoverme.75aef7f2.css.map*/