/* Rich select dropdown — color swatch + icon + description per option.
   Paired with templates/includes/rich_select.html and static/js/rich_select.js. */

.rich-select-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.rich-select .dropdown-menu {
  max-height: 60vh;
  overflow-y: auto;
}

.rich-select .dropdown-item.disabled {
  opacity: 0.6;
}

.rich-select .dropdown-toggle.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
