/* DomainDeck shared select control — intentionally framework independent. */
select:not([multiple]) {
  min-height: 44px;
  padding: 0 42px 0 14px;
  border: 1px solid #ded8d1;
  border-radius: 12px;
  appearance: none;
  -webkit-appearance: none;
  color: #211d19;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236f665e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  font-size: 14px;
  line-height: 1.3;
  outline: none;
  box-shadow: 0 1px 0 rgba(30, 22, 15, .02);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
select:not([multiple]):hover { border-color: #bfb5ac; background-color: #fffdfb; }
select:not([multiple]):focus { border-color: #f48120; box-shadow: 0 0 0 4px rgba(244,129,32,.12); }
select:not([multiple]):disabled { color: #8e867d; background-color: #f3f0ec; cursor: not-allowed; }
select option { color: #211d19; background: #fff; }

