            

.ox-layout-page-frame {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.ox-layout-stack {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.ox-layout-cluster {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  min-width: 0;
}

.ox-layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  min-width: 0;
  min-height: 0;
}

.ox-layout-split {
  display: flex;
  min-width: 0;
  min-height: 0;
}

.ox-layout-scroll {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
}

.ox-layout-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
