
/* V208 — Inventory toolbar:
   <=1200px: 3 columns
   <=960px: 2 columns
   <=560px: 1 column
*/
@media (max-width:1200px){
  .v206-inventory-toolbar{
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    width:100%!important;
    gap:8px!important;
  }
  .v206-inventory-toolbar > input[type="file"]{position:absolute!important}
  .v206-inventory-toolbar > button{
    width:100%!important;
    min-width:0!important;
    min-height:42px!important;
    height:auto!important;
    padding:9px 10px!important;
    white-space:normal!important;
    line-height:1.25!important;
    text-align:center!important;
    justify-content:center!important;
    font-size:12px!important;
  }
  .v206-inventory-toolbar > button svg{
    width:18px!important;height:18px!important;
    min-width:18px!important;min-height:18px!important;
  }
}
@media (max-width:960px){
  .v206-inventory-toolbar{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}
@media (max-width:560px){
  .v206-inventory-toolbar{grid-template-columns:1fr!important}
  .v206-inventory-toolbar > button{
    min-height:44px!important;
    font-size:12.5px!important;
  }
}
