/* Supplementary module styles — status pill, loading state, crop-finder modal. */

.v3Loading {
  padding: 24px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--panel2);
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--text-dim);
}
.v3Loading strong { font-size: 12.5px; }
.v3Loading span { font-size: 11px; color: var(--muted); }

.modalSearch {
  width: 100%;
  box-sizing: border-box;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 11px 12px;
  margin: 8px 0 10px;
  outline: none;
}
.modalSearch:focus { border-color: rgba(111,214,127,.5); }

.cropFinderResults { max-height: 220px; overflow: auto; margin-bottom: 12px; }
.cropFinderRow {
  width: 100%;
  text-align: left;
  background: transparent;
  color: inherit;
  border: 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 5px;
  cursor: pointer;
  font: inherit;
}
.cropFinderRow:hover, .cropFinderRow.selected { background: rgba(111,214,127,.08); }
.cropFinderRow small { display: block; color: var(--muted); font-style: italic; text-align: right; margin-top: 3px; }

#showTurkeyButton:disabled { opacity: .48; cursor: not-allowed; }
