/* SlotCatalog table: spreadsheet-like scrolling area with "freeze" header row */
/* Note: Any overflow on an ancestor makes sticky relative to that scroll container.
   So we intentionally make the table itself the scroll container (like Google Sheets). */
.slotTableWrap {
  --slotHeaderTopRowHeight: 40px;
  --slotLoadPositionsColWidth: 74px;
  --slotHiddenColWidth: 96px;
  --slotSyncColWidth: 58px;
  --slotFrozenBg: #0b1020;
  --slotFrozenBorder: #20273a;
  overflow: hidden;
  border: 0;
}
.slotTableWrap .tableScroll {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-height: min(72vh, 720px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: inherit;
}
.mailwizzEmailsWrap {
  overflow: hidden;
}
.mailwizzEmailsWrap .table {
  margin: 0;
}
@media (max-width: 640px) {
  .slotTableWrap .tableScroll { max-height: min(68vh, 520px); }
}

/* Sticky header rows inside product matrix */
.slotTableWrap .table thead tr:first-child th {
  position: sticky;
  top: 0;
  height: var(--slotHeaderTopRowHeight);
  z-index: 11;
  border-top: 0;
  border-bottom: 1px solid var(--slotFrozenBorder, #20273a);
  background: var(--slotFrozenBg, #0b1020);
  backdrop-filter: none;
  box-shadow: none;
}
.slotTableWrap .table thead tr:nth-child(2) th {
  position: sticky;
  top: var(--slotHeaderTopRowHeight);
  z-index: 11;
  border-top: 0;
  border-bottom: 1px solid var(--slotFrozenBorder, #20273a);
  background: var(--slotFrozenBg, #0b1020);
  backdrop-filter: none;
  box-shadow: none;
}
.slotTableWrap .table thead tr:nth-child(2) .stickyFirstCol,
.slotTableWrap .table thead tr:nth-child(2) .stickySecondCol,
.slotTableWrap .table thead tr:nth-child(2) .stickyThirdCol,
.slotTableWrap .table thead tr:nth-child(2) .stickyFourthCol {
  top: var(--slotHeaderTopRowHeight);
  z-index: 12;
}
.slotTopSpacer {
  color: transparent;
}
.slotSubHead {
  vertical-align: middle;
}
.slotColumnHeadText {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}
.slotHiddenHead {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  line-height: 1.1;
}
.slotShowHiddenLabel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 750;
  justify-content: center;
  font-size: 12px;
  white-space: nowrap;
  line-height: 1.1;
}
.slotHideHeadToggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: inherit;
  font: inherit;
  white-space: nowrap;
}
.slotHideHeadToggle input[type="checkbox"] {
  margin: 0;
}
.table.applyOnly thead tr:first-child th {
  position: sticky;
  top: 0;
  z-index: 16;
  background: #0b1020;
  backdrop-filter: none;
}
.table.applyOnly thead .stickyFirstCol { z-index: 18; }
.table.applyOnly tbody .stickyFirstCol { z-index: 9; }
.table .stickyFirstCol {
  position: sticky;
  left: 0;
  z-index: 9;
  background: var(--slotFrozenBg, #0b1020);
  backdrop-filter: none;
  border-top-color: var(--slotFrozenBorder, #20273a);
  border-right: 1px solid var(--slotFrozenBorder, #20273a);
}
.table thead .stickyFirstCol {
  top: 0;
  z-index: 12;
}
.slotTableWrap .table thead tr:first-child .stickyFirstCol,
.slotTableWrap .table thead tr:first-child .stickySecondCol,
.slotTableWrap .table thead tr:first-child .stickyThirdCol,
.slotTableWrap .table thead tr:first-child .stickyFourthCol {
  z-index: 12;
  border-bottom: 1px solid var(--slotFrozenBorder, #20273a);
}
.table .stickySecondCol {
  position: sticky;
  left: var(--slotSyncColWidth);
  z-index: 8;
  background: var(--slotFrozenBg, #0b1020);
  backdrop-filter: none;
  border-top-color: var(--slotFrozenBorder, #20273a);
  border-right: 1px solid var(--slotFrozenBorder, #20273a);
}
.slotTableWrap .table .stickyFirstCol:not(.slotSyncCol) + .stickySecondCol {
  left: var(--slotHiddenColWidth);
}
.table thead .stickySecondCol {
  top: 0;
  z-index: 12;
}
.table .stickyThirdCol {
  position: sticky;
  left: calc(var(--slotHiddenColWidth) + var(--slotSyncColWidth));
  z-index: 7;
  background: var(--slotFrozenBg, #0b1020);
  backdrop-filter: none;
  border-top-color: var(--slotFrozenBorder, #20273a);
  border-right: 1px solid var(--slotFrozenBorder, #20273a);
}
.slotTableWrap.slotHasLoadPositions .table .stickySecondCol.slotHiddenCol {
  left: var(--slotLoadPositionsColWidth);
}
.slotTableWrap.slotHasLoadPositions .table .stickyThirdCol.slotHiddenCol {
  left: calc(var(--slotSyncColWidth) + var(--slotLoadPositionsColWidth));
}
.slotTableWrap.slotHasLoadPositions .table .stickyThirdCol:not(.slotHiddenCol) {
  left: calc(var(--slotLoadPositionsColWidth) + var(--slotHiddenColWidth));
}
.table thead .stickyThirdCol {
  top: 0;
  z-index: 12;
}
.table .stickyFourthCol {
  position: sticky;
  left: calc(var(--slotSyncColWidth) + var(--slotLoadPositionsColWidth) + var(--slotHiddenColWidth));
  z-index: 6;
  background: var(--slotFrozenBg, #0b1020);
  backdrop-filter: none;
  border-top-color: var(--slotFrozenBorder, #20273a);
  border-right: 1px solid var(--slotFrozenBorder, #20273a);
}
.table thead .stickyFourthCol {
  top: 0;
  z-index: 12;
}
.syncColHead,
.syncColCell {
  width: 58px;
  min-width: 58px;
  max-width: 58px;
  text-align: center;
}
.syncColCell {
  padding-left: 8px;
  padding-right: 8px;
}
.slotTableWrap .table .slotHiddenCol {
  box-sizing: border-box;
  width: var(--slotHiddenColWidth);
  min-width: var(--slotHiddenColWidth);
  max-width: var(--slotHiddenColWidth);
  padding-left: 6px;
  padding-right: 6px;
}
.slotTableWrap .table .slotLoadPositionsCol {
  box-sizing: border-box;
  width: var(--slotLoadPositionsColWidth);
  min-width: var(--slotLoadPositionsColWidth);
  max-width: var(--slotLoadPositionsColWidth);
  padding-left: 6px;
  padding-right: 6px;
}
.slotLoadPositionsBtn {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--focusBorderStrong);
  background: var(--focusBgStrong);
  color: var(--focusTextStrong);
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  vertical-align: middle;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  box-sizing: border-box;
}
.slotLoadPositionsBtn:hover {
  background: var(--focusBgMid);
}
.slotLoadPositionsBtn:focus {
  outline: none;
}
.slotLoadPositionsBtn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.slotLoadPositionsBtn[disabled] {
  opacity: .9;
  cursor: wait;
}
.slotCell {
  position: relative;
  cursor: default;
  user-select: none;
  transition: background .15s ease, box-shadow .15s ease, opacity .15s ease, filter .15s ease;
}
.slotDisplayPending .slotCell[data-display-price] > strong,
.slotDisplayPending .slotCell[data-showcase-price] > strong {
  color: transparent;
}
.slotDisplayPending .slotCell[data-display-price] .cellInfo,
.slotDisplayPending .slotCell[data-showcase-price] .cellInfo {
  visibility: hidden;
}
.slotCell > strong {
  position: relative;
  z-index: 1;
  color: rgba(232,236,255,.76);
  transition: color .15s ease, text-shadow .15s ease, opacity .15s ease;
}
.manualConversionEstimate {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 2px;
  color: rgba(232,236,255,.58);
  font-size: 10px;
  line-height: 1.15;
  white-space: nowrap;
}
.slotCell.isActionable { cursor: pointer; }
.slotCell.isActionable > strong {
  color: rgba(248, 250, 255, .98);
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255,255,255,.08);
}
.slotCell.isActionable:not(.selected):hover { background: var(--focusBgSoft); box-shadow: inset 0 0 0 1px var(--focusBorder); }
.slotCell.selected { background: var(--focusBgMid); box-shadow: inset 0 0 0 1px var(--focusBorderStrong); }
.slotCell.selected > strong { color: var(--focusTextStrong); text-shadow: none; }
.slotCell.disabled { cursor: not-allowed; opacity: .75; }
.slotCell.disabled.isActionable { cursor: pointer; opacity: 1; }
.slotCell.scopeLocked { cursor: not-allowed; opacity: .68; }
.slotCell.scopeLocked:hover { background: transparent; box-shadow: none; }
.slotTableShowcase .slotCell,
.slotTableShowcase .slotCell.booked,
.slotTableShowcase .slotCell.reserved,
.slotTableShowcase .slotCell.booked.adminBooked,
.slotTableShowcase .slotCell.booked.adminLocked,
.slotTableShowcase .slotCell.booked.partnerBooked,
.slotTableShowcase .slotCell.booked.mine,
.slotTableShowcase .slotCell.booked.mine.lockedMine {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  opacity: 1;
}
.slotTableShowcase .slotCell.selected,
.slotTableShowcase .slotCell.booked.selected,
.slotTableShowcase .slotCell.reserved.selected {
  background: var(--focusBgMid);
  box-shadow: inset 0 0 0 1px var(--focusBorderStrong);
}
.slotTableShowcase .slotCell,
.slotTableShowcase .slotCell.disabled,
.slotTableShowcase .slotCell.scopeLocked,
.slotTableShowcase .slotCell.booked,
.slotTableShowcase .slotCell.booked.disabled,
.slotTableShowcase .slotCell.reserved,
.slotTableShowcase .slotCell.reserved.disabled,
.slotTableShowcase .slotCell[data-rebid="1"],
.slotTableShowcase .slotCell[data-rebid="1"].disabled {
  cursor: pointer;
}
.slotTableShowcase .slotCell.scopeLocked,
.slotTableShowcase .slotCell.scopeLocked:hover {
  opacity: 1;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell,
.slotTableShowcase.slotTableShowcaseFtds .slotCell.disabled,
.slotTableShowcase.slotTableShowcaseFtds .slotCell.scopeLocked,
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked,
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked.disabled,
.slotTableShowcase.slotTableShowcaseFtds .slotCell.reserved,
.slotTableShowcase.slotTableShowcaseFtds .slotCell.reserved.disabled,
.slotTableShowcase.slotTableShowcaseFtds .slotCell[data-rebid="1"],
.slotTableShowcase.slotTableShowcaseFtds .slotCell[data-rebid="1"].disabled {
  cursor: not-allowed;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell .tipBtn {
  cursor: pointer;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.submitted:not(.selected) {
  background: var(--okBg) !important;
  box-shadow: inset 0 0 0 1px var(--okBorderSoft) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.reserved:not(.selected) {
  background: var(--warnBgMid) !important;
  box-shadow: inset 0 0 0 1px var(--warnBorder) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.reserved.activeDispute:not(.selected),
.slotTableShowcase.slotTableShowcaseFtds .slotCell.reserved.multi:not(.selected) {
  background: var(--disputeBgMid) !important;
  box-shadow: inset 0 0 0 1px var(--disputeBorderStrong) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.reserved.otherPending:not(.selected),
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked.partnerBooked:not(.selected) {
  background: var(--pinkBg) !important;
  box-shadow: inset 0 0 0 1px var(--pinkBorder) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked:not(.adminBooked):not(.adminLocked):not(.partnerBooked):not(.mine):not(.selected) {
  background: var(--badBgMid) !important;
  box-shadow: inset 0 0 0 1px var(--badBorderSoft) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked.adminBooked:not(.selected) {
  background: rgba(90, 193, 255, .18) !important;
  box-shadow: inset 0 0 0 1px rgba(90, 193, 255, .40) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked.adminLocked:not(.selected) {
  background: rgba(56, 112, 255, .20) !important;
  box-shadow: inset 0 0 0 1px rgba(56, 112, 255, .46) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked.mine:not(.lockedMine):not(.selected) {
  background: rgba(168, 224, 72, .20) !important;
  box-shadow: inset 0 0 0 1px rgba(168, 224, 72, .42) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked.mine.lockedMine:not(.selected) {
  background: rgba(34, 104, 56, .30) !important;
  box-shadow: inset 0 0 0 1px rgba(64, 164, 98, .50) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell:not(.selected):hover,
.slotTableShowcase.slotTableShowcaseFtds .slotCell.disabled:not(.selected):hover,
.slotTableShowcase.slotTableShowcaseFtds .slotCell.scopeLocked:not(.selected):hover {
  background: transparent !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.submitted:not(.selected):hover {
  background: var(--okBg) !important;
  box-shadow: inset 0 0 0 1px var(--okBorderSoft) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.reserved:not(.selected):hover {
  background: var(--warnBgMid) !important;
  box-shadow: inset 0 0 0 1px var(--warnBorder) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.reserved.activeDispute:not(.selected):hover,
.slotTableShowcase.slotTableShowcaseFtds .slotCell.reserved.multi:not(.selected):hover {
  background: var(--disputeBgMid) !important;
  box-shadow: inset 0 0 0 1px var(--disputeBorderStrong) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.reserved.otherPending:not(.selected):hover,
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked.partnerBooked:not(.selected):hover {
  background: var(--pinkBg) !important;
  box-shadow: inset 0 0 0 1px var(--pinkBorder) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked:not(.adminBooked):not(.adminLocked):not(.partnerBooked):not(.mine):not(.selected):hover {
  background: var(--badBgMid) !important;
  box-shadow: inset 0 0 0 1px var(--badBorderSoft) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked.adminBooked:not(.selected):hover {
  background: rgba(90, 193, 255, .18) !important;
  box-shadow: inset 0 0 0 1px rgba(90, 193, 255, .40) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked.adminLocked:not(.selected):hover {
  background: rgba(56, 112, 255, .20) !important;
  box-shadow: inset 0 0 0 1px rgba(56, 112, 255, .46) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked.mine:not(.lockedMine):not(.selected):hover {
  background: rgba(168, 224, 72, .20) !important;
  box-shadow: inset 0 0 0 1px rgba(168, 224, 72, .42) !important;
}
.slotTableShowcase.slotTableShowcaseFtds .slotCell.booked.mine.lockedMine:not(.selected):hover {
  background: rgba(34, 104, 56, .30) !important;
  box-shadow: inset 0 0 0 1px rgba(64, 164, 98, .50) !important;
}
.slotTableShowcase th .muted.small:not(.slotAggregateValue),
.slotTableShowcase td.stickyFirstCol .muted.small:not(.slotAggregateValue),
.slotTableShowcase td.stickySecondCol .muted.small:not(.slotAggregateValue) {
  display: none;
}
.applyMarketCell { cursor: pointer; user-select: none; transition: background .15s ease, box-shadow .15s ease, border-color .15s ease; }
.applyMarketCell:hover { background: var(--focusBgSoft); box-shadow: inset 0 0 0 1px var(--focusBorder); }
.applyMarketCell.selected { background: var(--focusBgMid); box-shadow: inset 0 0 0 1px var(--focusBorderStrong); border-right-color: var(--focusBorderStrong); }
.applyMarketCell.selected strong { color: var(--focusTextStrong); }
.applyMarketCell.applyDisabled:hover,
.applyMarketCell.applyDisabled.selected {
  background: rgba(11,16,32,.92);
  box-shadow: none;
  border-right-color: rgba(255,255,255,.10);
}
.applyMarketCell.applyDisabled.selected strong { color: inherit; }
.applyMarketInner { display:flex; align-items:center; justify-content:space-between; gap:10px; width:100%; }
.applyStatusCell {
  white-space: nowrap;
  transition: background .15s ease;
}
.applyStatusText {
  font-weight: 700;
}
.table td.applyStatusCell--approved,
.acctPurchTable td.applyStatusCell--approved {
  background: var(--okBgStrong) !important;
}
.applyStatusText--approved {
  color: rgba(242, 255, 247, .98);
}
.table td.applyStatusCell--pending,
.acctPurchTable td.applyStatusCell--pending {
  background: var(--warnBgStrong) !important;
}
.applyStatusText--pending {
  color: rgba(255, 248, 226, .98);
}
.table td.applyStatusCell--rejected,
.acctPurchTable td.applyStatusCell--rejected {
  background: var(--badBgStrong) !important;
}
.applyStatusText--rejected {
  color: rgba(255, 236, 233, .98);
}
.marketApprovedBadge {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 999px;
  border: 2px solid rgba(96, 210, 128, .42);
  background: linear-gradient(180deg, rgba(93, 204, 125, .96), rgba(62, 165, 95, .96));
  color: rgba(242, 255, 247, .98);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 0 0 3px rgba(35, 79, 52, .92),
    0 0 0 6px rgba(92, 201, 124, .18),
    0 10px 22px rgba(20, 54, 35, .34);
  vertical-align: middle;
  transform: translateY(-1px);
}
.marketApprovedBadge:hover {
  filter: brightness(1.04);
}
.applyLockedCell { cursor: not-allowed; }
.slotCell.submitted { cursor: not-allowed; background: var(--okBg); box-shadow: inset 0 0 0 1px var(--okBorderSoft); }
.slotCell.reserved { background: var(--warnBgMid); box-shadow: inset 0 0 0 1px var(--warnBorder); }
.slotCell.reserved.activeDispute,
.slotCell.reserved.multi { background: var(--disputeBgMid); box-shadow: inset 0 0 0 1px var(--disputeBorderStrong); }
.slotCell.reserved.otherPending {
  background: var(--pinkBg);
  box-shadow: inset 0 0 0 1px var(--pinkBorder);
}
.slotCell.reserved.selected { background: var(--badBgStrong); box-shadow: inset 0 0 0 1px var(--badBorder); }
.slotCell.booked { cursor: not-allowed; background: var(--badBgMid); box-shadow: inset 0 0 0 1px var(--badBorderSoft); }
.slotCell.booked.adminBooked,
.slotCell.booked.adminBooked.disabled { cursor: pointer; background: rgba(90, 193, 255, .18); box-shadow: inset 0 0 0 1px rgba(90, 193, 255, .40); }
.slotCell.booked.adminLocked { background: rgba(56, 112, 255, .20); box-shadow: inset 0 0 0 1px rgba(56, 112, 255, .46); }
.slotCell.booked.partnerBooked { background: var(--pinkBg); box-shadow: inset 0 0 0 1px var(--pinkBorder); }
.slotCell.booked.mine { background: rgba(168, 224, 72, .20); box-shadow: inset 0 0 0 1px rgba(168, 224, 72, .42); }
.slotCell.booked.mine.lockedMine { background: rgba(34, 104, 56, .30); box-shadow: inset 0 0 0 1px rgba(64, 164, 98, .50); }
.slotTableShowcase .slotCell.submitted:not(.selected),
.slotTableShowcase .slotCell.reserved:not(.selected),
.slotTableShowcase .slotCell.reserved.multi:not(.selected),
.slotTableShowcase .slotCell.booked:not(.selected),
.slotTableShowcase .slotCell.booked.adminBooked:not(.selected),
.slotTableShowcase .slotCell.booked.adminLocked:not(.selected),
.slotTableShowcase .slotCell.booked.partnerBooked:not(.selected),
.slotTableShowcase .slotCell.booked.mine:not(.selected),
.slotTableShowcase .slotCell.booked.mine.lockedMine:not(.selected) {
  background: transparent !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08) !important;
}
.slotTableShowcase .slotCell:not(.selected):hover,
.slotTableShowcase .slotCell.submitted:not(.selected):hover,
.slotTableShowcase .slotCell.reserved:not(.selected):hover,
.slotTableShowcase .slotCell.reserved.multi:not(.selected):hover,
.slotTableShowcase .slotCell.booked:not(.selected):hover,
.slotTableShowcase .slotCell.booked.adminBooked:not(.selected):hover,
.slotTableShowcase .slotCell.booked.adminLocked:not(.selected):hover,
.slotTableShowcase .slotCell.booked.partnerBooked:not(.selected):hover,
.slotTableShowcase .slotCell.booked.mine:not(.selected):hover,
.slotTableShowcase .slotCell.booked.mine.lockedMine:not(.selected):hover,
.slotTableShowcase .slotCell.disabled:not(.selected):hover,
.slotTableShowcase .slotCell.scopeLocked:not(.selected):hover {
  background: var(--okBgStrong) !important;
  box-shadow: inset 0 0 0 1px var(--okBorderStrong) !important;
}
.slotCell.booked.linked { cursor: pointer; }
.slotCell.selected,
.slotCell.booked.selected,
.slotCell.reserved.selected,
.slotCell.booked.adminBooked.selected,
.slotCell.booked.adminLocked.selected,
.slotCell.booked.mine.selected,
.slotCell.booked.mine.lockedMine.selected {
  background: var(--focusBgStrong);
  box-shadow: inset 0 0 0 1px var(--focusBorderStronger);
}
.slotCell.isActionable .cellSub {
  color: rgba(232,236,255,.86);
}
.slotCell[data-rebid="1"],
.slotCell[data-rebid="1"].disabled { cursor: pointer; }
.cellSub { margin-top: 4px; font-size: 11px; color: rgba(232,236,255,.70); font-weight: 650; }
.cellSub.warn { color: var(--warnText); }
.cellPriceDeltaInline {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 118, 118, .99);
  vertical-align: baseline;
}
.cellPriceDeltaInline[data-tone="ok"] { color: rgba(92, 255, 132, .99); }
.slotTableShowcase .cellPriceDeltaInline { display: none; }
.cellInfo { position:absolute; top: 4px; right: 4px; z-index: 4; }
.showcaseCellInfo { top: 6px; right: 6px; }
.showcaseMetaBtn {
  width: 16px;
  min-width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--warnBorderStrong);
  background: var(--warnBgStrong);
  color: var(--warnTextStrong);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}
.showcaseMetaBtn:hover { background: var(--warnBgHover); }
.okMark { width: 16px; height: 16px; border-radius: 999px; border: 1px solid var(--okBorderStrong); background: var(--okBgMid); color: var(--okText); font-weight: 950; font-size: 12px; line-height: 16px; display:inline-flex; align-items:center; justify-content:center; pointer-events:none; }
.xMark { width: 16px; height: 16px; border-radius: 999px; border: 1px solid var(--badBorderStrong); background: var(--badBgMid); color: var(--badTextStrong); font-weight: 950; font-size: 12px; line-height: 16px; display:inline-flex; align-items:center; justify-content:center; pointer-events:none; }
.slotDeltaTipBtn {
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-left: 4px;
  padding: 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  line-height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transform: translateY(-0.5px);
}
.slotDeltaTipBtn--plus {
  border: 1px solid var(--okBorderStrong);
  background: var(--okBgMid);
  color: var(--okText);
}
.slotDeltaTipBtn--plus:hover { background: var(--okBgHover); }
.slotDeltaTipBtn--minus {
  width: 16px;
  min-width: 16px;
  border: 1px solid var(--badBorderStrong);
  background: var(--badBgMid);
  color: var(--badTextStrong);
  font-size: 11px;
  font-weight: 800;
}
.slotDeltaTipBtn--minus:hover { background: var(--badBgHover); }
.slotDeltaTipBtn--equal {
  border: 1px solid var(--warnBorderStrong);
  background: var(--warnBgStrong);
  color: var(--warnTextStrong);
}
.slotDeltaTipBtn--equal:hover { background: var(--warnBgHover); }
.infoBtn {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.12);
  color: rgba(248, 250, 255, .96);
  font-weight: 950;
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  box-sizing: border-box;
}
.infoBtn:hover { background: rgba(255,255,255,.18); }
.infoBtn.pendingInfoBtn {
  border-color: var(--warnBorderStrong);
  background: var(--warnBgStrong);
  color: var(--warnTextStrong);
  font-size: 11px;
  letter-spacing: 0;
  font-weight: 850;
}
.infoBtn.pendingInfoBtn:hover { background: var(--warnBgHover); }
.infoBtn.multi {
  width: 16px;
  height: 16px;
  border-color: var(--disputeBorderStrong);
  background: var(--disputeBgStrong);
  color: var(--disputeTextStrong);
  font-size: 11px;
  letter-spacing: 0;
  font-weight: 850;
}
.infoBtn.multi:hover { background: var(--disputeBgHover); }
.infoBtn.otherPendingInfoBtn {
  width: 16px;
  height: 16px;
  border-color: var(--pinkBorderStrong);
  background: var(--pinkBgStrong);
  color: var(--pinkTextStrong);
  font-size: 11px;
  letter-spacing: 0;
  font-weight: 850;
}
.infoBtn.otherPendingInfoBtn:hover { background: var(--pinkBgHover); }
.infoBtn.okInfoBtn {
  border-color: var(--okBorderStrong);
  background: var(--okBgStrong);
  color: var(--okTextStrong);
  font-size: 12px;
  font-weight: 800;
}
.infoBtn.okInfoBtn:hover { background: var(--okBgHover); }
.slotCell.reserved:not(.otherPending):not(.activeDispute):not(.multi) .infoBtn:not(.okInfoBtn):not(.hybridInfoBtn) {
  border-color: var(--warnBorderStrong);
  background: var(--warnBgStrong);
  color: var(--warnTextStrong);
}
.slotCell.reserved:not(.otherPending):not(.activeDispute):not(.multi) .infoBtn:not(.okInfoBtn):not(.hybridInfoBtn):hover {
  background: var(--warnBgHover);
}
.slotCell.reserved.activeDispute .infoBtn:not(.okInfoBtn):not(.hybridInfoBtn),
.slotCell.reserved.multi .infoBtn:not(.okInfoBtn):not(.hybridInfoBtn) {
  border-color: var(--disputeBorderStrong);
  background: var(--disputeBgStrong);
  color: var(--disputeTextStrong);
}
.slotCell.reserved.activeDispute .infoBtn:not(.okInfoBtn):not(.hybridInfoBtn):hover,
.slotCell.reserved.multi .infoBtn:not(.okInfoBtn):not(.hybridInfoBtn):hover {
  background: var(--disputeBgHover);
}
.slotCell.reserved.otherPending .infoBtn:not(.okInfoBtn):not(.hybridInfoBtn) {
  border-color: var(--pinkBorderStrong);
  background: var(--pinkBgStrong);
  color: var(--pinkTextStrong);
}
.slotCell.reserved.otherPending .infoBtn:not(.okInfoBtn):not(.hybridInfoBtn):hover {
  background: var(--pinkBgHover);
}
.infoBtn.hybridInfoBtn { border-color: rgba(255, 255, 255, .46); background: rgba(255, 255, 255, .14); color: rgba(248, 250, 255, .98); font-size: 11px; }
.infoBtn.hybridInfoBtn:hover { background: rgba(255, 255, 255, .22); }
.bookBtn { width: 16px; height: 16px; border-radius: 999px; border: 1px solid var(--badBorderStrong); background: var(--badBgMid); color: var(--badTextStrong); font-weight: 950; font-size: 13px; line-height: 1; cursor: pointer; padding: 0; }
.bookBtn:hover { background: var(--badBgStrong); }
.bookBtn.adminBooked { border-color: rgba(90, 193, 255, .55); background: rgba(90, 193, 255, .24); color: rgba(220, 244, 255, .98); }
.bookBtn.adminBooked:hover { background: rgba(90, 193, 255, .30); }
.slotCell.selected .bookBtn.adminBooked { border-color: var(--focusBorderStronger); background: var(--focusBgStrong); color: var(--focusTextStrong); }
.slotCell.selected .bookBtn.adminBooked:hover { background: var(--focusBgHover); }
.slotCell.isActionable:hover .infoBtn.hybridInfoBtn {
  border-color: var(--focusBorderStronger);
  background: var(--focusBgStrong);
  color: var(--focusTextStrong);
}
.slotCell.isActionable:hover .infoBtn.hybridInfoBtn:hover {
  background: var(--focusBgHover);
}
.slotCell.selected .infoBtn.hybridInfoBtn { border-color: var(--focusBorderStronger); background: var(--focusBgStrong); color: var(--focusTextStrong); }
.slotCell.selected .infoBtn.hybridInfoBtn:hover { background: var(--focusBgHover); }
.bookBtn.adminLocked { border-color: rgba(56, 112, 255, .62); background: rgba(56, 112, 255, .28); color: rgba(224, 235, 255, .99); }
.bookBtn.adminLocked:hover { background: rgba(56, 112, 255, .36); }
.bookBtn.partnerBooked { border-color: var(--pinkBorderStrong); background: var(--pinkBgStrong); color: var(--pinkTextStrong); }
.bookBtn.partnerBooked:hover { background: var(--pinkBgHover); }
.slotCell.submitted.isActionable:not(.selected):hover { background: var(--okBgHover); box-shadow: inset 0 0 0 1px var(--okBorderStrong); }
.slotCell.reserved.isActionable:not(.otherPending):not(.activeDispute):not(.multi):not(.selected):hover { background: var(--warnBgHover); box-shadow: inset 0 0 0 1px var(--warnBorderStrong); }
.slotCell.reserved.activeDispute.isActionable:not(.selected):hover,
.slotCell.reserved.multi.isActionable:not(.selected):hover { background: var(--disputeBgHover); box-shadow: inset 0 0 0 1px var(--disputeBorderStrong); }
.slotCell.reserved.otherPending.isActionable:not(.selected):hover,
.slotCell.booked.partnerBooked.isActionable:not(.selected):hover { background: var(--pinkBgHover); box-shadow: inset 0 0 0 1px var(--pinkBorderStrong); }
.slotCell.booked.isActionable:not(.adminBooked):not(.adminLocked):not(.partnerBooked):not(.mine):not(.selected):hover { background: var(--badBgHover); box-shadow: inset 0 0 0 1px var(--badBorderStrong); }
.slotCell.booked.adminBooked.isActionable:not(.selected):hover { background: rgba(90, 193, 255, .28); box-shadow: inset 0 0 0 1px rgba(90, 193, 255, .56); }
.slotCell.booked.adminLocked.isActionable:not(.selected):hover { background: rgba(56, 112, 255, .30); box-shadow: inset 0 0 0 1px rgba(56, 112, 255, .60); }
.slotCell.booked.mine.isActionable:not(.lockedMine):not(.selected):hover { background: rgba(168, 224, 72, .28); box-shadow: inset 0 0 0 1px rgba(168, 224, 72, .50); }
.slotCell.booked.mine.lockedMine.isActionable:not(.selected):hover { background: rgba(34, 104, 56, .38); box-shadow: inset 0 0 0 1px rgba(64, 164, 98, .58); }
.cmsSyncBtn {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--warnBorderStrong);
  background: var(--warnBgStrong);
  color: var(--warnTextStrong);
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  vertical-align: middle;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  box-sizing: border-box;
}
.cmsSyncBtn:hover { background: var(--warnBgHover); }
.cmsSyncBtn:focus { outline: none; }
.cmsSyncBtn:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.cmsSyncBtn[disabled] { opacity: .9; cursor: wait; }
.cmsSyncBtn.cmsSyncSyncing { animation: cmsSyncSpin .8s linear infinite; }
.cmsSyncBtn.cmsSyncPending {
  border-color: var(--warnBorder);
  background: var(--warnBgMid);
  color: var(--warnText);
}
.cmsSyncBtn.cmsSyncPending:hover { background: var(--warnBgHover); }
.cmsSyncBtn.cmsSyncPending[disabled] { cursor: not-allowed; }
.cmsSyncBtn.cmsSyncOk {
  border-color: var(--okBorderStrong);
  background: var(--okBgStrong);
  color: var(--okTextStrong);
  box-shadow: inset 0 0 0 1px rgba(152,255,180,.06), 0 0 0 1px rgba(94,201,118,.10);
  font-size: 12px;
  font-weight: 800;
}
.cmsSyncBtn.cmsSyncOk:hover { background: var(--okBgHover); }
.cmsSyncBtn.cmsSyncErr {
  border-color: var(--badBorderStrong);
  background: var(--badBgMid);
  color: var(--badTextStrong);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  font-size: 13px;
  font-weight: 950;
}
.cmsSyncBtn.cmsSyncErr:hover { background: var(--badBgHover); }
@keyframes cmsSyncSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.widgetsCheckBtn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255, 255, 255, .07);
  color: rgba(232, 236, 255, .9);
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  vertical-align: middle;
  user-select: none;
}
.widgetsCheckBtn:hover { background: rgba(255, 255, 255, .11); }
.widgetsCheckBtn[disabled] { opacity: .8; cursor: wait; }
.widgetsCheckBtn.widgetsCheckOk { border-color: var(--okBorderStrong); background: var(--okSolidBg); color: var(--okTextStrong); }
.widgetsCheckBtn.widgetsCheckWarn { border-color: var(--warnBorderStrong); background: var(--warnBgStrong); color: var(--warnTextStrong); }
.widgetsCheckBtn.widgetsCheckErr { border-color: var(--badBorderStrong); background: var(--badSolidBg); color: var(--badTextStrong); }
.widgetsStatusCol {
  border-left: 1px solid rgba(255,255,255,.10);
}
