/* Display utilities including flexbox */

.block {
  display: block;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-xx-small {
  gap: var(--space--xx-small);
}

.gap-x-small {
  gap: var(--space--x-small);
}

.gap-small {
  gap: var(--space--small);
}

.gap-base {
  gap: var(--space--base);
}

.gap-large {
  gap: var(--space--large);
}

.gap-row-small {
  row-gap: var(--space--small);
}

/* Overflow utilities */

.min-h-0 {
  min-height: 0;
}
