#neurohr-ai-context-control {
  position: fixed;
  top: 92px;
  right: 24px;
  z-index: 9000;
  display: grid;
  grid-template-columns: auto minmax(190px, 1fr) auto;
  align-items: center;
  gap: 6px 10px;
  max-width: min(620px, calc(100vw - 32px));
  padding: 10px 12px;
  border: 1px solid #4b3a67;
  border-radius: 12px;
  background: rgba(24, 24, 24, 0.96);
  color: #f5f2fa;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  font: 600 13px/1.3 system-ui, sans-serif;
}

#neurohr-ai-context-control select {
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid #5c477e;
  border-radius: 8px;
  background: #242424;
  color: #fff;
}

#neurohr-ai-context-control button {
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid #7255a1;
  border-radius: 8px;
  background: #302640;
  color: #cfa9ff;
  cursor: pointer;
  font: inherit;
}

#neurohr-ai-context-control button:hover {
  background: #3d2d52;
}

#neurohr-ai-context-control small {
  grid-column: 1 / -1;
  color: #aaa2b7;
  font-weight: 400;
}

@media (max-width: 760px) {
  #neurohr-ai-context-control {
    top: 76px;
    right: 12px;
    left: 12px;
    grid-template-columns: auto 1fr;
  }

  #neurohr-ai-context-control button {
    grid-column: 1 / -1;
  }
}
