.formTheme {
  background-color: rgb(24,25,27) !important;
  border-color: rgb(39,41,44) !important;
}

.navBG {
  background-color: #353941 !important;
  border-color: rgb(39,41,44) !important;
}

.settingsLink a:link {
  text-decoration: none !important;
  color: var(--bs-gray-dark) !important;
}

.settingsLink :hover {
  text-decoration: none;
  color: #228fb1 !important;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff !important;
  background-color: #228fb1 !important;
  border-color: #228fb1;
}

.page-link {
  z-index: 2;
  color: #999aa4 !important;
  background-color: #ffffff;
  border-color: #dddfeb;
}

/* The snackbar - position it at the bottom and in the middle of the screen */

.successToast {
  color: var(--bs-gray-dark);
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  z-index: 1;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */

.successToast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

