.admin-nav button b {
  float: right;
  min-width: 20px;
  padding: 2px 6px;
  border-radius: 99px;
  background: #ed6b3b;
  color: white;
  text-align: center;
}

.admin-nav button.order-flash {
  animation: orderFlash 2s ease;
}

.admin-nav button.order-flash b {
  animation: orderBadgeFlash 2s ease;
}

@keyframes orderFlash {
  0%, 100% { background: rgba(255,255,255,.08); color: white; }
  20%, 70% { background: #dbe86f; color: #102d22; transform: translateX(3px); }
}

@keyframes orderBadgeFlash {
  20%, 70% { background: #102d22; color: #dbe86f; }
}

.ordering-session-row {
  display: grid;
  grid-template-columns: 116px minmax(220px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-top: 1px solid #e7e7df;
}

.ordering-session-qr {
  width: 116px;
  height: 116px;
  padding: 7px;
  object-fit: contain;
  border: 1px solid #deded5;
  background: white;
}

.ordering-session-details { min-width: 0; }
.ordering-session-details strong,
.ordering-session-details small { display: block; }
.ordering-session-details small { margin-top: 5px; color: #69746e; }
.ordering-session-details code {
  display: block;
  max-width: 100%;
  margin-top: 12px;
  padding: 9px 10px;
  overflow: hidden;
  border: 1px solid #e3e3db;
  background: #f7f7f3;
  color: #254538;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ordering-session-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.ordering-session-actions a,
.ordering-session-actions button {
  min-height: 34px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d8d8cf;
  background: white;
  color: #17392b;
  font: 600 10px "DM Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
}
.ordering-session-actions a:first-child { border-color: #17392b; background: #17392b; color: white; }

@media (max-width: 760px) {
  .ordering-session-row { grid-template-columns: 92px minmax(0, 1fr); padding: 15px; }
  .ordering-session-qr { width: 92px; height: 92px; }
  .ordering-session-actions { grid-column: 1 / -1; justify-content: flex-start; }
}
