html {
    height: 100%;
  }

  .controls {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .controls .field {
    margin-bottom: 0;
    margin-left: 22px;
    font-size: 10px;
  }

  .controls .label {
    color: #ffffff;
    font-size: 14px;
    }


  .controls .label .control {
    color: #ffffff;
    font-size: 14px;

  }


  #footer {
    height: 22px;
    line-height: 22px;
    font-family: "courier", sans-serif;
    font-size: 12px;
    color: #ffffff;
    background-color: #547980;
    padding-left: 250px;
    border-top: 1px dashed #cdcdc9;
  }

  #footer span {
    display: inline-block;
    vertical-align: middle;
  }

  div#chart {
    flex: 100 !important;
  }

  svg text {
    fill: whitesmoke;
    font-weight: bold;
  }

  svg .axis--x path {
    display: none;
  }

  svg .axis--x .tick line {
    display: none;
  }

  svg .axis--x .tick {
    font-size: 1vw;
  }

  svg .label {
    font-size: 1vw;
  }

  svg .axis--y .tick {
    font-size: vw;
  }

  svg .axis--y .domain {
    display: none;
  }

  svg .axis--y .tick line {
    stroke: white;
  }

  svg .bar {
    stroke: whitesmoke;
    stroke-width: 0.25vw;
  }

  svg .target-1-bar {
    fill: black;
  }

  svg .target-1-bar-agonist {
    fill: url(#striped); /* Reference the defined pattern */
  }


  svg .target-2-bar {
    fill: #2a3d50;
  }

  svg .target-1-bar:hover {
    fill: cornflowerblue;
    stroke: black;
    stroke-width: 0.25vw;
  }

  svg .target-2-bar:hover {
    fill: red;
    stroke: black;
    stroke-width: 0.25vw;
  }

  .tooltip {
    pointer-events: none;
    opacity: 0;
  }

  .tooltip-main {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0.75em 0.5em;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 0.25em;
  }

  .tooltip-arrow {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    border-width: 6px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
  }