
.Box {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  scrollbar-width: none;
  scrollbar-color: #000000ff #00000000;
  box-sizing: border-box;
  display: grid;
  min-width: 0;
  min-height: 0;
}

.Box > * {
  grid-area: 1 / 1;
}

.FlexBox {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  scrollbar-width: none;
  scrollbar-color: #000000ff #00000000;
  box-sizing: border-box;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: row;
  width: fit-content;
  height: fit-content;
  align-items: flex-start;
  flex-shrink: 0;
}
