.efvp-field-heading {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.efvp-field-heading label {
  min-width: 0;
  color: #bdd1dc;
  font-size: 11px;
  font-weight: 700;
}

.efvp-inspector .efvp-suggestion-toggle {
  display: grid;
  flex: 0 0 24px;
  place-items: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  padding: 0;
  border-color: rgba(57, 215, 238, 0.42);
  border-radius: 6px;
  color: var(--ef-cyan-soft);
  background: rgba(57, 215, 238, 0.08);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.efvp-inspector .efvp-suggestion-toggle:hover,
.efvp-inspector .efvp-suggestion-toggle[aria-expanded="true"] {
  color: #00191e;
  border-color: var(--ef-cyan);
  background: var(--ef-cyan);
}

.efvp-suggestion-panel {
  display: grid;
  gap: 8px;
  margin-top: 2px;
  padding: 10px;
  border: 1px solid rgba(57, 215, 238, 0.3);
  border-radius: 8px;
  background: rgba(7, 31, 49, 0.82);
}

.efvp-suggestion-panel > p {
  margin: 0;
  color: var(--ef-muted);
  font-size: 10px;
  line-height: 1.35;
}

.efvp-suggestion-options {
  display: grid;
  gap: 6px;
  max-height: 230px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.efvp-inspector .efvp-suggestion-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 7px;
  width: 100%;
  min-height: 0;
  padding: 8px 9px;
  border-color: rgba(137, 225, 244, 0.18);
  color: #cce2eb;
  background: rgba(3, 21, 35, 0.72);
  font-size: 10px;
  line-height: 1.35;
  text-align: left;
}

.efvp-suggestion-option > span:first-child {
  color: var(--ef-cyan);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.efvp-inspector .efvp-suggestion-option:hover,
.efvp-inspector .efvp-suggestion-option:focus-visible {
  border-color: var(--ef-cyan);
  background: rgba(20, 58, 78, 0.9);
}

.efvp-inspector .efvp-suggestion-option.is-added {
  border-color: var(--ef-green);
  background: rgba(19, 77, 67, 0.8);
}

.efvp-suggestion-toggle:disabled,
.efvp-suggestion-option:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}
