.orders-empty {
  color: var(--admin-muted);
  font-weight: 600;
  padding: 12px 0 2px;
}

#ordersListPanel[hidden] {
  display: none !important;
}

#ordersListPanel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.orders-loading {
  color: var(--admin-muted);
  font-weight: 650;
  padding: 8px 2px;
}

.orders-item {
  cursor: pointer;
}

.orders-item:focus-visible {
  outline: 2px solid rgba(255, 138, 0, 0.55);
  outline-offset: 2px;
}

@media (max-width: 980px) {
}

@media (max-width: 740px) {
  .orders-row > div:nth-child(6),
  .orders-row > div:nth-child(7),
  .orders-row > div:nth-child(8) {
    display: none;
  }
}

.orders-item-muted {
  background: #f7f7f8;
  color: var(--admin-muted);
}

.orders-item-muted .tag {
  opacity: 0.55;
  filter: saturate(0.6);
}

.orders-item-attn {
  border-color: rgba(36, 99, 235, 0.35);
  background: rgba(36, 99, 235, 0.06);
}

.orders-item-attn:hover {
  border-color: rgba(36, 99, 235, 0.55);
  background: rgba(36, 99, 235, 0.09);
}

.orders-item-warn {
  border-color: rgba(255, 138, 0, 0.35);
  background: rgba(255, 138, 0, 0.06);
}

.orders-item-warn:hover {
  border-color: rgba(255, 138, 0, 0.55);
  background: rgba(255, 138, 0, 0.09);
}
