.site-toolbar {
  position: fixed;
  z-index: 1000;
  top: 13px;
  left: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.site-toolbar a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid rgba(107, 133, 160, 0.48);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  color: #172033;
  box-shadow: 0 7px 20px rgba(23, 32, 51, 0.12);
  opacity: 0.8;
  backdrop-filter: blur(6px);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.site-toolbar a:hover,
.site-toolbar a:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  color: #172033;
  opacity: 1;
  box-shadow: 0 9px 24px rgba(23, 32, 51, 0.18);
}

.site-toolbar a:focus-visible {
  outline: 3px solid #76c8bc;
  outline-offset: 2px;
}

.site-toolbar a span {
  font-size: 17px;
  line-height: 1;
}

/* The source application already has a desktop header. Reserve its left edge for site navigation. */
.app-header .brand-lockup {
  margin-left: 226px;
}
