/* Text-input + "Начать" control for feeding custom text into the 3D graph. */
.semantic-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 8px 0 6px;
}

.semantic-text-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 7px 10px;
  font: inherit;
  font-size: 13px;
  color: #f4f4f4;
  background: rgba(20, 20, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  outline: none;
}

.semantic-text-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.semantic-text-input:focus {
  border-color: rgba(120, 180, 255, 0.7);
  box-shadow: 0 0 0 2px rgba(120, 180, 255, 0.2);
}

.bot-action.is-primary {
  background: rgba(120, 180, 255, 0.22);
  border-color: rgba(120, 180, 255, 0.55);
  color: #eaf3ff;
}

.bot-action.is-primary:hover {
  background: rgba(120, 180, 255, 0.34);
}

.bot-action.is-busy {
  opacity: 0.6;
  pointer-events: none;
}
