/* guia/web/agentes-btn.css — botões de ativação dos agentes (guia + copiloto)
   Usados em ambos os editores (editor 2D + sandbox-3d). */

.agentes-toolbar {
  display: flex;
  gap: 6px;
  align-items: center;
}

.btn-agente {
  padding: 5px 11px;
  border-radius: 4px;
  background: #2a2a2a;
  color: #e0e0e0;
  border: 1px solid #555;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.3;
  transition: background 0.12s, border-color 0.12s;
  white-space: nowrap;
}

.btn-agente:hover:not(:disabled) {
  background: #3a3a3a;
  border-color: #888;
}

.btn-agente.ativo {
  background: #1565c0;
  border-color: #1976d2;
  color: #fff;
}

.btn-agente.ativo:hover:not(:disabled) {
  background: #1976d2;
}

.btn-agente:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
