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%;
}

.container {
    max-width: unset;
}

body {
  margin-bottom: 60px;
}

main {
    margin: 0 auto;
    width: 100%;
}

#report-container {
    height: calc(0.5625 * 77vw); /* 16:9 aspect ratio */
}

@media only screen and (max-width: 574px) {
    #report-container {
        height: calc(0.5625 * 100vw); /* 16:9 aspect ratio */
    }
}

.alignleft {
    float: left;
    width: 33.33333%;
    text-align: left;
}

.aligncenter {
    float: left;
    width: 33.33333%;
    text-align: center;
}

.alignright {
    float: left;
    width: 33.33333%;
    text-align: right;
}

.text-separator {
  display: flex;
  align-items: center;
  text-align: center;
}

.text-separator::before,
.text-separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px rgba(0,0,0,.55);
}

.text-separator:not(:empty)::before {
  margin-right: .25em;
}

.text-separator:not(:empty)::after {
  margin-left: .25em;
}

.navbar-brand {
  display: grid;
  padding: 6px;
}

.navbar-brand > * {
  max-height: 44px;
}

.navbar-nav {
  gap: 12px;
}

footer .container {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
@media only screen and (max-width: 574px) {
    footer .container {
        align-items: center;
        gap: 0;
        flex-direction: column;
    }

    footer .container > small {
      line-height: 2.4em;
    }
}

.admin-page {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.admin-page .top-row {
  align-items: center;
}

.dt-layout-table {
  margin-top: 24px !important;
  margin-bottom: 24px;
}
