html {
  font-size: 11pt;
}

body {
  font-family: 'Arimo', Arial, sans-serif;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0.75rem;
}

nav.navbar-brand {
  font-family: 'Crete Round', Georgia, Times, serif;
  font-size: 1.6rem;
}

nav a.navbar-item.active {
  font-weight: bold;
  color: hsl(0, 0%, 71%) !important;
}

tr.archived {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #c6acae;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

tr.archived td {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

tr.primary {
  --bs-table-color: #000;
  --bs-table-bg: #d1e7dd;
  --bs-table-border-color: #a7b9b1;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

tr.primary td {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.asteriskField {
  color: red;
}

.disabled {
  pointer-events: none;
  background: lightgray;
}

.toast-container {
  position: fixed;
  top: 4rem;
  right: 0;
}

@media only screen and (max-width: 768px) {
  dt {
    font-weight: bold !important;
  }

  dd {
    margin-bottom: 1rem !important;
    margin-left: 0 !important;
  }
}

@media only screen and (min-width: 769px) {
  dl {
    display: flex;
    flex-wrap: wrap;
  }

  dt {
    width: 25%;
    font-weight: bold;
  }

  dt::after {
    content: ":";
  }

  dd {
    width: 75%;
  }
}
