/* File: /css/font-final-lock.css
   Purpose: Enforce ONE modern system UI font across ALL customer-facing pages, including tiles, select controls, messages, header, footer.
*/
:root{
  --nx-font-ui: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html, body{
  font-family: var(--nx-font-ui) !important;
}

*, *::before, *::after{
  font-family: var(--nx-font-ui) !important;
}

select, option, button, input, textarea{
  font-family: var(--nx-font-ui) !important;
  font-size: 16px;
}

/* Bottom nav text prominence */
.nx-bottom-nav a,
.nx-bottom-nav button{
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}
@media (max-width: 420px){
  .nx-bottom-nav a,
  .nx-bottom-nav button{
    font-size: 16px !important;
  }
}

/* Tiles */
.nx-tile, .nx-tile *{
  font-weight: 700;
  letter-spacing: 0.02em;
}