/* 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;

/* Fix: AEM layout sets body { position: relative } which breaks react-aria's
   overlay positioning (popover uses body as containing block instead of viewport,
   causing incorrect flip calculations and mispositioned dropdowns). */
body {
  position: static;
}

/* 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.77cb6233.css.map*/