html {
  font-size: 15px;
}

@media (min-width: 768px) {
  html {
    font-size: 17px;
  }
}

.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;
}

@media print {
  header, footer, .no-print {
    display: none !important;
  }
}

/* Running side-margin adjustment for the nav bar, page content, and footer
   (all use Bootstrap's .container), relative to Bootstrap's own defaults.
   Positive = extra inset added on top of Bootstrap's normal gutter (content
   gets narrower). Negative = removes that gutter and widens the container
   itself past Bootstrap's default breakpoint widths (content gets wider) -
   useful for wide tables like the Equipment list.
     First request: "extend the margin 1in left/right" -> +1in
     This request: "shorten the margin 2in left/right" -> +1in - 2in = -1in
   Only applied at md+ - on a narrow/mobile screen this shouldn't kick in. */
:root {
  --pmt-side-inset: -1in;
}

@media (min-width: 768px) {
  .container {
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + max(0px, var(--pmt-side-inset)));
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + max(0px, var(--pmt-side-inset)));
  }
}
@media (min-width: 768px) {
  .container { max-width: calc(720px + max(0px, -1 * var(--pmt-side-inset)) * 2); }
}
@media (min-width: 992px) {
  .container { max-width: calc(960px + max(0px, -1 * var(--pmt-side-inset)) * 2); }
}
@media (min-width: 1200px) {
  .container { max-width: calc(1140px + max(0px, -1 * var(--pmt-side-inset)) * 2); }
}
@media (min-width: 1400px) {
  .container { max-width: calc(1320px + max(0px, -1 * var(--pmt-side-inset)) * 2); }
}