/* ============================================================
   HSPS Dentrix Voice Notes – fixed chrome overlay
   Strategy: Rise renders full-viewport as normal; we overlay a
   fixed header, then inject CSS into the same-origin iframe to
   shrink #page-wrap so its scrollbar stays below the header.
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ── Fixed header ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  text-align: center;
  background: #fff;
  /* Blue accent bar built into the bottom border */
  border-bottom: 10px solid #0e4e96;
}

.site-header a {
  display: inline-block;
  vertical-align: middle;
}

.site-header img {
  border: 0;
  height: 50px;
  width: auto;
}

.site-header .hs-logo {
  margin-right: 14px;
}

/* ── Rise content offset ─────────────────────────────────── */
#app,
#innerApp,
.transition-group {
  padding-top: 4.9rem;
}
