/* STAFF REDESIGN 6K - Menu Cleanup / Flow Focus */
.appMenu.staffQuickMenu{
  max-height:min(82vh, 860px);
  overflow:auto;
  overscroll-behavior:contain;
}
.menuStatusGroup{padding-bottom:16px}
.menuStatusGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.menuStatusChip{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:42px;
  padding:8px 10px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.11);
  color:#b8bfca;
  font-weight:900;
  font-size:13px;
  line-height:1.1;
  text-align:center;
  white-space:nowrap;
}
.menuStatusChip i{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#2ecc71;
  box-shadow:0 0 0 4px rgba(46,204,113,.11);
  flex:0 0 auto;
}
.menuStatusChip.warn i{background:#ffb52e;box-shadow:0 0 0 4px rgba(255,181,46,.12)}
.menuStatusChip.bad i{background:#ff5e66;box-shadow:0 0 0 4px rgba(255,94,102,.13)}
.menuItem small{
  display:block;
  margin-top:3px;
  color:#9aa3b2;
  font-size:12px;
  font-weight:800;
  line-height:1.15;
}
.action-grid:not(.order-picker){
  grid-template-columns:1fr;
}
#screenStart .action-grid:not(.order-picker) .main-card{
  min-height:0;
}
.bottom-nav.threeNav{
  grid-template-columns:repeat(3,1fr);
}
.bottom-nav.threeNav .nav-item{
  min-width:0;
}
@media (max-width:420px){
  .menuStatusChip{font-size:12px;padding:7px 6px;gap:6px}
  .menuStatusChip i{width:8px;height:8px}
}
