* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

/* Terms of use link */
.footer .terms-of-use-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  color: #9999A9;
  font-feature-settings: 'liga' off, 'clig' off;

  font-family: var(--Typography-font-sans, "Siemens Sans");
  font-size: var(--font-size-ms-0, 14px);
  font-style: normal;
  font-weight: var(--font-weight-font-weight-normal, 400);
  line-height: 143%;
  letter-spacing: 0.168px;

  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

/* Hover state */
.footer .terms-of-use-link:hover {
  color: #00E5AA;
  text-decoration: none;
}