.operator-search-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(114, 196, 255, 0.3);
  border-radius: 15px;
  background: linear-gradient(120deg, rgba(114, 196, 255, 0.08), rgba(97, 212, 154, 0.04));
}

.operator-search-action[hidden] { display: none; }
.operator-search-action span,
.operator-search-action b { display: block; }
.operator-search-action span {
  color: var(--ice);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.operator-search-action b {
  margin-top: 5px;
  font-size: 0.86rem;
  line-height: 1.4;
}
.operator-search-action button {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 15px;
  border: 1px solid var(--ice);
  border-radius: 10px;
  background: var(--ice);
  color: var(--bg);
  font-weight: 850;
  cursor: pointer;
}
.operator-search-action button:hover { background: #9bd6ff; }
.operator-search-action button:disabled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--quiet);
  cursor: not-allowed;
}
.operator-live-link {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 0 13px;
  border: 1px solid var(--ice);
  border-radius: 9px;
  background: var(--ice);
  color: var(--bg);
  font-weight: 850;
  line-height: 38px;
  text-decoration: none;
}

@media (max-width: 640px) {
  .operator-search-action { align-items: flex-start; flex-direction: column; }
  .operator-search-action button { width: 100%; }
}
