/**
 * BigCombo custom styling
 */

/* Ensure pointer cursor for all BigCombo controls */
.bigcombo .input-group-text,
.bigcombo .display-value {
  cursor: pointer !important;
}

/* Ensure pointer cursor even when readonly */
.bigcombo input.display-value[readonly] {
  cursor: pointer !important;
}

/* Maintain the pointer for the clear button */
.bigcombo .input-group-text.cursor-pointer {
  cursor: pointer !important;
}

/* Results list item hover styles */
.bigcombo .results-list div:hover {
  background-color: var(--light-color, #f8f9fa);
  cursor: pointer;
}

/* Active selection style */
.bigcombo .results-list div.bg-primary {
  color: white;
} 