/*
 * Minimal app-wide utilities for gaps Bootstrap does not cover cleanly.
 * If a rule starts defining a component look, it does not belong here.
 */

.required::after {
  content: " *";
  color: var(--bs-danger);
}

.cursor-pointer {
  cursor: pointer !important;
}

.min-height-auto {
  min-height: auto !important;
}

.min-w-0 {
  min-width: 0 !important;
}

.resize-none {
  resize: none !important;
}

.resize-vertical {
  resize: vertical !important;
}
