html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* small helper to match previous 0.75rem inline spacing used on lists */
.mb-075 {
  margin-bottom: 0.75rem !important;
}

/* centralized icon sizing for check icons */
.check-icon {
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
}

/* centralized sizing for brand logo */
.brand-logo {
    width: 220px; /* increased from 160px */
    height: auto; /* preserve SVG aspect ratio */
    max-height: 48px; /* keep within navbar height */
    display: inline-block;
    overflow: visible; /* avoid clipping if parent restricts */
}

/* ensure navbar brand doesn't clip the svg */
.navbar-brand {
    overflow: visible;
}

/* map sizing and iframe presentation (moved from inline attributes) */
.map-wrapper {
  /* provide a consistent height while keeping responsiveness from Bootstrap ratio */
  min-height: 430px;
}
.map-wrapper .map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}