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

  /* 
  This sets the width of the bottom row.
  */
  --ajs-content-grid-row-3: var(--verb-widget-height);
}

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

#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 {
  height: -webkit-fill-available;
  display: flex;
}

#MyVerbListWidget button {
  margin: 2px;
  border-radius: 3px;
  font-size: 1em;
  line-height: 1em;
  margin: 0 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
