/* v122 — readable department labels at POS and tablet widths */
.pos-group-tabs {
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
}

@media (max-width: 700px) {
  .pos-group-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 390px) {
  .pos-group-tabs {
    grid-template-columns: 1fr;
  }
}
