.rootItems {
  flex-direction: column;
  flex-wrap: nowrap;
}

.inventoryItemSpeciesDiv a {
  cursor: pointer;
  display: block;
  width: -webkit-fill-available;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid var(--mint-background);
  font-size: var(--max-font-size);
  color: var(--primary_txt_color);
  background-image: linear-gradient(
    90deg,
    var(--primary_background_color) 0%,
    var(--secondary_darker_background_color) 50%,
    var(--secondary_background_color) 100%
  );
}

/* .inventoryItemSpeciesItem {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  height: auto;
} */
.inventoryItemSpeciesItem {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

/* Loading state for species filter (cascading filter refresh) */
input.autocomplete-cb.loading {
  background-image: url('/images/pattern_load.gif');
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px 16px;
  opacity: 0.7;
}