/* SUSP_LOCK_OVERLAY_V1 — visual lock on suspended-market cells */
.susplock-cell {
  position: relative !important;
  opacity: .55 !important;
  pointer-events: none !important;
}
.susplock-cell::after {
  content: '\01F512'; /* 🔒 */
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(0,0,0,.35);
  border-radius: inherit;
  z-index: 5;
  pointer-events: none;
  color: #e6edf3;
}
.susplock-cell svg[data-testid='ArrowDropUpIcon'],
.susplock-cell svg[data-testid='ArrowDropDownIcon'] { display: none !important; }
