.crm-simple-order {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px;
  font-size: 13px;
}
.crm-simple-order-badge {
  display: inline-block;
  background: #ede9fe;
  color: #5b21b6;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.crm-simple-order-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.crm-simple-order-facts .label {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.crm-simple-order-facts .value {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}
.crm-simple-order-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.crm-simple-order-note {
  font-size: 12px;
  font-weight: 600;
  color: #92400e;
}
.crm-simple-order-ladder-details {
  margin-top: 10px;
}
.crm-simple-order-ladder-details > summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 8px;
}
@media (max-width: 640px) {
  .crm-simple-order-facts {
    grid-template-columns: 1fr;
  }
}
