<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">td.clickable {
  cursor: pointer;
  position:relative;
}

td.clickable .poplist .opt {
  padding-left: 4px;
}

td.clickable .poplist .opt:hover {
  text-decoration: underline;
  background-color:lightcoral;
}

td.clickable .popinput {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 1;
  line-height: 24px;
}

td.clickable .popinput input { width: 100%; background-color: lightskyblue; }

td.clickable .poplist {
  position: fixed;
  background-color: lightskyblue;
  padding: 5px;
  left: 0;
  top: 0;
  right: 0;
  min-width: 94px;
  max-width: 200px;
  max-height: 142px;
  overflow-y: auto;
  z-index: 1000;
}

td.noData {
  text-align: center;
  font-style: italic;
}
</pre></body></html>