.ft-nunito {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.clickable:hover {
  background: #CECECE;
  cursor: pointer;
}

.clickable-outline-success:hover{
  background-color: #137347;
  color: white;
}

.fade {
  transition: opacity 0.2s ease-in-out;
}
.fade:not(.show) {
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.highlight-row {
  background-color: #AF90E4; /* light purple */
  transition: background-color 2s ease;
}