.checkbox-bold {
  border: 2px solid var(--bs-gray-600);
}

#table-container td {
  word-break: break-all;
}

/* Used to add an asterisk on label
for required input fields*/
label.required-field-label::after {
  content: " *";
  color: red;
}

/* Used to show spinners 
or other loading indicators
while HTMX requests are in flight*/
.loading-indicator {
  display: none;
}

.htmx-request .loading-indicator,
.htmx-request.loading-indicator {
  display: inline-block;
}
