/* Force iframe container to fill the viewport height */
.widget-type-iframe {
  height: calc(100vh - 50px) !important; /* adjust 50px for header/nav height */
}

/* Override inline height on iframe element */
.widget-type-iframe iframe[style] {
  height: calc(100vh - 50px) !important;
  width: 100% !important;
  border: none !important;
}

/* Remove scrolling from bookmarks column */
.column.size-small {
  max-height: none !important;
  overflow: visible !important;
}