/* Allergen pills on MenuList cards (Stage 2). */
.allergen-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
  font-size: 0.8em;
}
.allergen-pill {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 10px;
  line-height: 1.5;
  white-space: nowrap;
  user-select: none;
}
.allergen-pill-loose {
  background: #f0f0f0;
  color: #555;
  border: 1px solid #ddd;
}
.allergen-pill-strict {
  background: #ffd0d0;
  color: #a00;
  border: 1px solid #d77;
  font-weight: 600;
}
.allergen-style-icons .allergen-pill {
  padding: 2px 4px;
  font-size: 1.05em;
}

/* Warning halos for customer matches. */
.allergen-warning-card {
  position: relative;
}
.allergen-warning-card::after {
  content: '⚠';
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 1.2em;
  z-index: 2;
}
.allergen-warning-anaphylaxis {
  outline: 3px solid #D32F2F;
  outline-offset: -3px;
}
.allergen-warning-medium {
  outline: 2px solid #F57C00;
  outline-offset: -2px;
}
.allergen-warning-low {
  outline: 1px solid #388E3C;
  outline-offset: -1px;
}

#allergen-omit-counter {
  margin-left: 8px;
  font-size: 0.9em;
  color: #d33;
}
