.stats {
  grid-template-columns: repeat(6, 1fr);
}

.order-card.is-new {
  border-color: #99caff;
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.09);
}

.order-card.is-test {
  border-color: #e7bc52;
  background: linear-gradient(135deg, #fffdf5, #ffffff 48%);
}

.order-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.turnaround {
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef2f6;
  color: #4f5965;
  font-size: 11px;
  font-weight: 700;
}

.turnaround.is-rush {
  background: #fff0e0;
  color: #a54800;
}

.turnaround.is-approved {
  background: #e8f8ed;
  color: #167338;
}

.turnaround.is-test {
  background: #fff4cf;
  color: #815d00;
}

.order-sla,
.notification-state {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.order-sla.is-rush {
  color: #a54800;
  font-weight: 700;
}

.order-sla.is-test {
  color: #815d00;
  font-weight: 700;
}

.notification-state.is-delayed {
  color: #a54800;
}

.order-guidance {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  padding: 12px 13px;
  border: 1px solid #dce8f5;
  border-radius: 13px;
  background: linear-gradient(135deg, #f6fbff, #fbfdff);
}

.order-guidance p {
  margin: 0;
  color: #3d5268;
  font-size: 12px;
  line-height: 1.5;
}

.order-guidance .next-action {
  color: #075da9;
  font-weight: 700;
}

.order-guidance .audit-trail {
  padding-top: 7px;
  border-top: 1px solid #e2ebf4;
  color: #6b7785;
  font-size: 11px;
}

.approval-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 12px;
  border: 1px solid #dce6f2;
  border-radius: 12px;
  background: #f8fbff;
  color: #394b61;
  font-size: 12px;
  line-height: 1.45;
}

.approval-check input {
  margin-top: 2px;
}

.deliver-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.rush-approval {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid #ffd6ad;
  border-radius: 12px;
  background: #fff8f0;
}

.rush-approval[hidden] {
  display: none;
}

.rush-approval strong {
  font-size: 13px;
}

.rush-approval p {
  margin: 0;
  color: #7a5a3b;
  font-size: 11px;
  line-height: 1.5;
}

.rush-approval > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  align-items: end;
}

.rush-approval button {
  white-space: nowrap;
  background: #a54800;
}

@media (max-width: 720px) {
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .rush-approval > div {
    grid-template-columns: 1fr;
  }

  .order-chips {
    justify-content: flex-start;
  }
}
