*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
  /* Keep page from growing sideways; tables scroll inside their wrappers */
  overflow-x: clip;
}

@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 rgba(91, 75, 138, 0.35);
}

body {
  margin-bottom: 60px;
  overflow-x: clip;
  max-width: 100vw;
}

/* Flex/grid children must be allowed to shrink so wide tables scroll */
.container-fluid,
main,
.row > [class*="col"],
.sped-card,
.list-card {
  min-width: 0;
  max-width: 100%;
}