html, body {
  font-family: 'Poppins', sans-serif !important;
}

.center {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.centered-block {
  display: block;
  margin: 0 auto;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.no-display {
  display: none !important;
}

.gap-1px {
  gap: 1px;
}

.gap-3px {
  gap: 3px;
}

.gap-5px {
  gap: 5px;
}

.gap-8px {
  gap: 8px;
}

.gap-10px {
  gap: 10px;
}

.gap-24px {
  gap: 24px;
}

hr {
    border: none;
    border-bottom: 2px solid #CFCFCF;
}

.pointer {
  cursor: pointer;
}

.custom-link {
    color: black;
    text-decoration: none;
}

.custom-link:hover {
    color: black !important;
    transform: scale(1.1);
}

tr.clickable-row {
    cursor: pointer;
}

tr.clickable-row:hover {
    background-color: #f0f0f0;
}
