html,
body {
  background-color: #ecf0f8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
#content {
  margin-top: 70px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#msg {
  display: none;
  position: fixed;
  top: 1.5rem;
  left: 50%;
  z-index: 9999;
  transform: translateX(-50%);
  max-width: 300px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  padding-bottom: calc(0.5rem + 5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.msg-success {
  background-color: green;
}

.msg-error {
  background-color: #f11515;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #eef2f5;
}

.bg-dark {
 background-color: var(--dark) !important;
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-brand.active {
 /* color: #306bdd;*/
  font-weight: bold;
}