/* Base text styles */body {  font-family: Verdana, Arial, Helvetica, sans-serif;  font-size: 11px;  font-weight: normal;  color: #000;  /* reset default spacing to allow true centring */  margin: 0;  padding: 0;  /* make body a flex‐container to centre its child */  display: flex;  justify-content: center;  /* horizontal centre */  align-items: center;      /* vertical centre */  min-height: 100vh;        /* full viewport height */}/* New wrapper to constrain width */.print-wrapper {  max-width: 800px;  width: 100%;  padding: 20px;            /* optional breathing room */  box-sizing: border-box;}/* Links */a {  font-weight: bolder;  color: #39F;  text-decoration: none;}a:hover {  text-decoration: underline;}/* Image float */img {  float: left;}/* Utility */.autoClearContainer {  overflow: auto;}/* Map link */.viewLargerMap {  font-size: 9px;  margin-top: 5px;}/* Headings */h1 {  font-size: 22px;  font-weight: normal;}/* Make iframe responsive up to 800px */iframe {    width: 100%;    max-width: 800px;    /* doubled from 480px to 960px */    height: 600px;    border: none;}