#VerbListWidgetContainer {
  /* setting a custom var so we can use it in a couple of places */
  --verb-widget-height: 75px;

  /* 
  This sets the width of the left column of the content grid, 
  where we're putting our verb widget, to 30%.
  */
  --ajs-content-grid-row-3: var(--verb-widget-height);
}

#MyVerbListWidget {
  height: calc(var(--verb-widget-height) - 2px);
  position: relative;
}

#MyVerbListWidget:before {
  /* we use these properties to rotate and position the title */
  transform-origin: top left;
  transform: rotate(-90deg);
  width: var(--verb-widget-height);
  top: var(--verb-widget-height);
  left: 3px;
}

#MyVerbListWidget .ajs-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: -webkit-fill-available;
  overflow: scroll;
  padding: 0 5px 0 0;
  margin-top: 3px;
  margin-left: 1.0rem;
}

#MyVerbListWidget .ajs-scroll-content {
  padding: 0 5px;
  height: -webkit-fill-available;
}

#MyVerbListWidget button {
  padding: 6px 1%; /* 1% gives us a bit of horizontal flex */
  margin: 2px;
  border-radius: 3px;
  font-size: 1em;
  line-height: 1em;
}
