/* Layout.module.css */

/* color orange-brown #C27A3A*/

._emailClient_12d87_5 {
  display: flex;
  height: calc(100vh - 55px);
  flex: 1;
  width: 100%;
  background-color: #1e1e1e;
  color: #ffffff;
  user-select: none;
  -webkit-user-select: none;
}

/* Production ledger hard override to prevent base 3-column table styles from leaking in */
._productionDetailBody_12d87_17 ._productionFlowSeparator_12d87_17 {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 140px 90px 90px !important;
  grid-template-rows: 1fr !important;
  height: auto !important;
}

._productionDetailBody_12d87_17 ._productionFlowSeparator_12d87_17 span {
  font-size: 12px !important;
  line-height: 15px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  padding: 5px 15px !important;
  min-height: 0 !important;
  display: block !important;
}

._productionDetailBody_12d87_17 ._productionFlowItems_12d87_34 {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 140px 90px 90px !important;
  grid-template-rows: none !important;
  grid-auto-rows: minmax(92px, auto) !important;
  grid-auto-flow: row !important;
}

._productionDetailBody_12d87_17 ._productionFlowItems_12d87_34 ._messageBodyContentItem_12d87_42 {
  margin: 0 !important;
  padding: 8px 15px !important;
}

._productionDetailBody_12d87_17 ._productionFlowItems_12d87_34 ._messageBodyContentItemTotals_12d87_47,
._productionDetailBody_12d87_17 ._productionFlowItems_12d87_34 ._messageBodyContentItemTotalsAmount_12d87_48 {
  align-self: center !important;
  justify-self: end !important;
  margin: 0 15px !important;
}

/* Sidebar Styles */
._sidebar_12d87_55 {
  width: 240px;
  background-color: rgb(32, 32, 35);
  border-right: 1px solid #3e3e42;
  display: flex;
  flex-direction: column;
  transform-origin: left;
  transition: 0.2s cubic-bezier(0.32, 0.08, 0.24, 1);

  &._closed_12d87_64 {
    width: 0;
    opacity: 0;
  }
}

._sidebarHeader_12d87_70 {
  padding: 15px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

._sidebarActions_12d87_77 {
  display: flex;
  justify-content: space-between;
}

._sidebarHeader_12d87_70 h2 {
  margin: 0;
  margin-left: 6px;
  font-size: 21px;
  font-weight: 500;
  color: #ffffff;
}

._mailboxList_12d87_90 {
  padding: 0px 10px;
  margin: 0;
  user-select: none;
  -webkit-user-select: none;

  &._overlayList_12d87_96 {
    padding: 0;
  }
}

._mailboxItem_12d87_101 {
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 32px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.05s;

  &._overlayList_12d87_96 {
    justify-content: flex-start;
    padding: 0 7.5px;
    gap: 5px;
  }
}

._mailboxItem_12d87_101:hover {
  background-color: rgba(116, 116, 128, 0.25);
}

._mailboxItem_12d87_101._active_12d87_121 {
  background-color: rgb(52, 52, 54);
  color: #ffffff;
}

._mailboxItem_12d87_101._overlayList_12d87_96._active_12d87_121 {
  background-color: rgb(52, 52, 54);
  color: #ffffff;
}

._mailboxIcon_12d87_131 {
  flex-shrink: 0;
}

._mailboxItem_12d87_101 svg {
  margin-right: 10px;
  margin-left: 5px;
  color: #C27A3A;
}

._mailboxItem_12d87_101._subItem_12d87_141 svg {
  margin-left: 20px;
}

._mailboxName_12d87_145 {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.24px;
  line-height: 15px;
  flex: 1 1 100%;
  margin-right: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255, 255, 255, 0.98);
}

._count_12d87_158 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 400;
  letter-spacing: -0.22px;
  line-height: 20px;
  margin-inline-end: 0px;
}

._foldersSection_12d87_167 {
  margin-top: 20px;
  padding: 0 12px;
}

._foldersHeader_12d87_172 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

._foldersHeader_12d87_172 h3 {
  margin-left: 6px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.98);
  ;
}

._addButton_12d87_186 {
  background: none;
  border: none;
  color: #cccccc;
  cursor: pointer;
  font-size: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

._addButton_12d87_186:hover {
  background-color: #37373d;
}

._folderItem_12d87_204 {
  display: flex;
  align-items: center;
  padding: 6px 0;
  cursor: pointer;
  font-size: 14px;
  color: #cccccc;
}

._folderItem_12d87_204 svg {
  margin-right: 8px;
  color: #0e639c;
}

._folderItem_12d87_204:hover {
  color: #ffffff;
}

/* Message List Styles */
._messageList_12d87_223 {
  width: 410px;
  background-color: rgb(28, 28, 30);
  border-right: 1px solid #3e3e42;
  display: flex;
  flex-direction: column;
  position: relative;
}

._messageListHeader_12d87_232 {
  padding: 12px 20px;
}

._headerTop_12d87_236 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
  gap: 10px;

  &._searchBar_12d87_243 {
    margin-bottom: 8px;
  }
}

._headerTop_12d87_236 h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
}

._headerActions_12d87_254 {
  display: flex;
  gap: 8px;
}

._listFilterRoot_12d87_259 { position: relative; }
._listFilterButtonActive_12d87_260 { color: #2ee86a; }
._listFilterBadge_12d87_261 { position: absolute; top: -1px; right: -2px; width: 14px; height: 14px; padding: 0; border: 0; border-radius: 999px; background: rgba(24,200,79,.2); color: #5fea88; font-size: 9px; font-weight: 500; line-height: 14px; text-align: center; }
._listFilterPopover_12d87_262 { position: absolute; z-index: 80; top: calc(100% + 8px); right: 0; width: min(460px, calc(100vw - 32px)); padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: #252529; box-shadow: 0 18px 48px rgba(0,0,0,.42); color: #f5f5f5; transform-origin: top right; animation: .2s cubic-bezier(.32,.08,.24,1) _cw-modal-pop_12d87_1; }
._listFilterHeading_12d87_263 { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
._listFilterHeading_12d87_263 strong, ._listFilterHeading_12d87_263 span { display: block; }
._listFilterHeading_12d87_263 strong { font-size: 15px; font-weight: 650; }
._listFilterHeading_12d87_263 span { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 12px; }
._listFilterClose_12d87_267 { display: grid; flex: 0 0 auto; place-items: center; width: 28px; height: 28px; padding: 0; border: 0; border-radius: 7px; background: transparent; color: rgba(255,255,255,.62); cursor: pointer; }
._listFilterClose_12d87_267:hover { background: rgba(255,255,255,.08); color: #fff; }
._listFilterField_12d87_269 { display: grid; gap: 7px; margin-top: 12px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 600; }
._listFilterGrid_12d87_270 { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); column-gap: 12px; }
._listFilterFieldWide_12d87_271 { grid-column: 1 / -1; }
._filterSearchSelect_12d87_272 { position: relative; min-width: 0; }
._filterSearchTrigger_12d87_273 { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; height: 38px; padding: 0 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; background: #323236; color: #fff; font: inherit; font-size: 13px; font-weight: 500; text-align: left; cursor: pointer; }
._filterSearchTrigger_12d87_273 span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
._filterSearchTriggerOpen_12d87_275 { border-color: rgba(24,200,79,.72); box-shadow: 0 0 0 3px rgba(24,200,79,.12); }
._filterSearchMenu_12d87_276 { position: absolute; z-index: 120; top: calc(100% + 5px); right: 0; left: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgb(28,28,30); box-shadow: 0 14px 34px rgba(0,0,0,.46); animation: .16s cubic-bezier(.32,.08,.24,1) _cw-modal-pop_12d87_1; transform-origin: top center; }
._filterSearchInputWrap_12d87_277 { display: flex; align-items: center; gap: 8px; margin: 7px; padding: 0 9px; border: 1px solid rgba(255,255,255,.11); border-radius: 8px; background: #323236; color: rgba(255,255,255,.44); }
._filterSearchInputWrap_12d87_277 input { min-width: 0; width: 100%; height: 35px; padding: 0; border: 0; outline: 0; background: transparent; color: #fff; font: inherit; font-size: 13px; }
._filterSearchSpinner_12d87_279 { flex: 0 0 auto; animation: _listFilterSpin_12d87_1 .8s linear infinite; }
._filterSearchOptions_12d87_280 { max-height: 238px; overflow-y: auto; padding: 2px 5px 5px; }
._filterSearchOption_12d87_280 { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; padding: 8px 9px; border: 0; border-radius: 8px; background: transparent; color: rgba(255,255,255,.9); font: inherit; text-align: left; cursor: pointer; }
._filterSearchOption_12d87_280:hover { background: rgba(255,255,255,.07); }
._filterSearchOption_12d87_280 span, ._filterSearchOption_12d87_280 strong, ._filterSearchOption_12d87_280 small { display: block; min-width: 0; }
._filterSearchOption_12d87_280 strong { overflow: hidden; font-size: 13px; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; }
._filterSearchOption_12d87_280 small { margin-top: 3px; overflow: hidden; color: rgba(255,255,255,.42); font-size: 11px; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; }
._filterSearchState_12d87_286 { padding: 14px 10px; color: rgba(255,255,255,.45); font-size: 12px; text-align: center; }
._filterSearchFooter_12d87_287 { display: flex; align-items: center; justify-content: space-between; min-height: 34px; padding: 4px 9px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.4); font-size: 11px; }
._filterSearchFooter_12d87_287 button { border: 0; background: transparent; color: #5fea88; font: inherit; font-weight: 400; cursor: pointer; }
@keyframes _listFilterSpin_12d87_1 { to { transform: rotate(360deg); } }
._listFilterSelectWrap_12d87_290 { position: relative; }
._listFilterSelectWrap_12d87_290 select { width: 100%; height: 38px; padding: 0 34px 0 11px; appearance: none; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; outline: none; background: #323236; color: #fff; font: inherit; font-size: 13px; font-weight: 500; cursor: pointer; }
._listFilterSelectWrap_12d87_290 select:focus { border-color: rgba(24,200,79,.72); box-shadow: 0 0 0 3px rgba(24,200,79,.12); }
._listFilterSelectWrap_12d87_290 svg { position: absolute; top: 50%; right: 11px; pointer-events: none; transform: translateY(-50%); color: rgba(255,255,255,.48); }
._listFilterFooter_12d87_294 { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
._listFilterReset_12d87_295, ._listFilterApply_12d87_295 { display: inline-flex; align-items: center; justify-content: center; gap: 7px; height: 36px; padding: 0 12px; border-radius: 9px; font-size: 12px; font-weight: 400; cursor: pointer; }
._listFilterReset_12d87_295 { border: 0; background: transparent; color: rgba(255,255,255,.62); }
._listFilterReset_12d87_295:hover { background: rgba(255,255,255,.06); color: #fff; }
._listFilterApply_12d87_295 { border: 1px solid #18c84f; background: #18c84f; color: #07150b; }
._listFilterApply_12d87_295:hover { background: #2ee86a; border-color: #2ee86a; }

._iconButton_12d87_301 {
  background: none;
  border: none;
  color: #C27A3A;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

._iconButton_12d87_301:hover {
  background-color: #37373d;
}

._headerInfo_12d87_317 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

._unreadButton_12d87_326 {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

._unreadDot_12d87_333 {
  width: 12px;
  height: 12px;
  background-color: #0e639c;
  border-radius: 50%;
  display: block;
}

._searchBar_12d87_243 {
  position: relative;
  display: flex;
  flex: 1 1 100%;
  transition: all 0.2s ease-in-out;
  align-items: center;
}

._searchIcon_12d87_349 {
  position: absolute;
  left: 12px;
  color: #cccccc;
}

._searchClearIcon_12d87_355 {
  position: absolute;
  right: 5px;
  color: #cccccc;
  z-index: 1;
  cursor: pointer;
  border-radius: 8px;
  padding: 5px;

  &:hover {
    background-color: #4e4e55;
  }
}

._searchInput_12d87_369 {
  width: 100%;
  padding: 8px 36px 8px 36px;
  background: rgb(50, 50, 54);
  border: 1px solid rgb(74, 74, 76);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
}

._searchInput_12d87_369::placeholder {
  color: #cccccc;
}

._searchInput_12d87_369:focus {
  outline: none;
  border-color: transparent;
  outline: 3px solid rgba(255, 255, 255, 0.22);
  caret-color: rgba(255, 255, 255, 0.6);
}

._topHits_12d87_390 {
  background-color: rgb(13, 13, 13);
  padding: 10px 0;
  margin: 15px 10px;
  border-radius: 8px;
  width: calc(100% - 20px);

  ._topHitsLabel_12d87_397 {
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.98);
    margin-left: 15px;
    margin-bottom: 10px;
  }

  ._messageItem_12d87_406 {
    margin: 0px 10px;
  }

  ._messageItem_12d87_406._selected_12d87_410 {
    background-color: rgba(255, 255, 255, 0.15);
  }
}

._messageItem_12d87_406 {
  display: flex;
  padding: 0px 0px;
  margin: 0px 15px;
  border-radius: 10px;
  max-width: 100%;
  height: 99px;
  cursor: pointer;
  position: relative;
}

._messageItem_12d87_406::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
  pointer-events: none;
  opacity: 0;
}

._messageItem_12d87_406._liveFlash_12d87_436::after {
  animation: _livePresenceFlash_12d87_1 500ms ease-out;
}

._messageItemCompact_12d87_440 {
  height: 76px;
}

._messageItem_12d87_406:hover {
  /* background-color: #37373d; */

  ._messageContent_12d87_447 {
    ._actions_12d87_448 {
      display: block;
    }
  }
}

._messageItem_12d87_406._selected_12d87_410 {
  background-color: rgba(255, 255, 255, 0.1);
}

._messageItem_12d87_406._selected_12d87_410 ._messageContent_12d87_447,
._messageItem_12d87_406._before_selected_12d87_459 ._messageContent_12d87_447 {
  border-bottom-color: transparent;
}

/* reset all */
._messageItem_12d87_406._selected_multiple_middle_12d87_464 {
  border-radius: 0;
}

/* first in a block (no selected before it) */
._messageItem_12d87_406._selected_multiple_last_12d87_469 {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* last in a block (no selected after it) */
._messageItem_12d87_406._selected_multiple_first_12d87_475 {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

@keyframes _livePresenceFlash_12d87_1 {
  0% {
    opacity: 0;
    background: rgba(255, 255, 255, 0);
  }

  35% {
    opacity: 1;
    background: rgba(255, 255, 255, 0.075);
  }

  100% {
    opacity: 0;
    background: rgba(255, 255, 255, 0);
  }
}

._threadFlags_12d87_497 {
  width: 24px;
  margin-top: 10px;
  margin-right: unset;
  padding-top: unset;
  max-height: 42px;
  flex-shrink: 0;
  flex-grow: 0;
}

._threadMonogram_12d87_507 {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 5px;
  padding-right: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-shrink: 0;
  flex-grow: 0;
}

._locationAvatar_12d87_525 {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(194, 122, 58, 0.14);
  color: rgb(194, 122, 58);
  flex-shrink: 0;
}

._avatarRoot_12d87_537 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  overflow: hidden;
  user-select: none;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: var(--black-a3);
  flex-shrink: 0;
  flex-grow: 0;

  &._messageContainer_12d87_551 {
    width: 40px;
    height: 40px;

    ._avatarFallback_12d87_555 {
      font-size: 18.5px;
    }
  }
}

._avatarImage_12d87_561 {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: inherit;
}

._avatarFallback_12d87_555 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgb(166, 171, 183), rgb(134, 138, 147));
  color: rgb(224, 236, 248);
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

._avatarRoot_appImage_12d87_582 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  overflow: hidden;
  user-select: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.24);
  flex-shrink: 0;
  flex-grow: 0;
  object-fit: cover;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &._messageContainer_12d87_551 {
    width: 32px;
    height: 32px;

    ._avatarFallback_12d87_555 {
      font-size: 18.5px;
    }
  }
}

._avatarFallback_appImage_12d87_617 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(224, 236, 248);
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

._locationHeaderIcon_12d87_629 {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(194, 122, 58, 0.12);
  color: rgb(194, 122, 58);
  flex-shrink: 0;
}

._messageContent_12d87_447 {
  display: grid;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  padding: 8px 0 7px;
  margin-right: 12.5px;
  border-bottom-color: rgba(60, 60, 62, 0);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  overflow-x: hidden;
  overflow-y: visible;

  &:not(:focus-within) {
    border-bottom-color: rgb(60, 60, 62);
  }
}

._messageContentCompact_12d87_659 {
  padding: 6px 0 6px;
  align-content: center;
}

._messageContentCompact_12d87_659 ._subject_12d87_664 {
  margin-top: 1px;
}

._messageContentCompact_12d87_659 ._preview_12d87_668 {
  margin-top: 0;
}

._messageItemCompact_12d87_440 ._threadMonogram_12d87_507 {
  margin-top: 2px;
  padding-top: 6px;
}

._messageItemCompact_12d87_440 ._threadFlags_12d87_497 {
  margin-top: 6px;
}

._messageHeader_12d87_681 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1px;
  max-width: 100%;
  gap: 8px;
  overflow: visible;
  min-width: 0;
}

._sender_12d87_692 {
  font-weight: 500;
  font-size: 17px;
  color: #ffffff;
  flex: 1 1 auto;
  /* Allow to grow and shrink */
  min-width: 0;
  /* Allows text truncation */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._time_12d87_705 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
  gap: 5px;
  overflow: visible;
  position: relative;
}

._actions_12d87_448 {
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  color: rgb(28, 28, 30);
  width: 12.5px;
  height: 12.5px;
  padding: 1px;
  flex-shrink: 0;
  flex-grow: 0;
  display: none;
}


._messageFlagIndicatorDetached_12d87_730 {
  position: absolute;
  top: 17px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  opacity: 0.95;
  pointer-events: none;
  z-index: 1;
}

._subject_12d87_664 {
  padding: 0;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._preview_12d87_668 {
  padding: 0;
  font-size: 14px;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._draftedByRow_12d87_766 {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

._draftedByPill_12d87_772 {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._unreadIndicator_12d87_788 {
  width: 8px;
  height: 8px;
  background-color: #0e639c;
  border-radius: 50%;
  display: none;
}

/* Message Content Styles */
._messageContainer_12d87_551 {
  width: calc(100vw - 640px);
  flex: 1;
  background-color: rgb(28, 28, 30);
  display: flex;
  flex-direction: column;
}

._messageContentHeader_12d87_805 {
  padding: 16px 24px;
  background-color: rgb(28, 28, 30);
  border-bottom: 1px solid transparent;
  transition:
    background-color cubic-bezier(0.32, 0.08, 0.24, 1) 0.2s,
    border-bottom-color cubic-bezier(0.32, 0.08, 0.24, 1) 0.16s;

  &._overlapping_12d87_813 {
    background-color: rgb(44, 44, 46);
  }

}

._messageContentHeaderIdle_12d87_819 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

._messageActions_12d87_823 {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  min-height: 32px;
  transition: opacity 0.14s ease;

  span {
    display: flex;
    gap: 8px;
  }
}

._messageActions_12d87_823[data-empty='true'] {
  opacity: 0.68;
}

._headerActionMenuWrap_12d87_840 {
  position: relative;
  display: inline-flex;
}

._headerActionMenu_12d87_840 {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background-color: rgb(28, 28, 30);
  border: .2px solid rgba(116, 116, 128, 0.25);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0px 10px 38px rgba(0, 0, 0, 0.3), 0px 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 40;
}

._headerActionMenuContextual_12d87_858 {
  transform-origin: top left;
  animation: 0.2s cubic-bezier(0.32, 0.08, 0.24, 1) _cw-modal-pop_12d87_1;
}

._headerActionMenuItem_12d87_863 {
  width: 100%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
}

._headerActionMenuItem_12d87_863:hover {
  background-color: #2c2c2e;
}

._headerActionMenuItem_12d87_863 svg {
  color: #d8a23d;
  flex-shrink: 0;
}

._headerActionMenuCopy_12d87_888 {
  padding: 8px 10px 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

._headerActionMenuRow_12d87_895 {
  display: flex;
  gap: 8px;
  padding: 0 6px 4px;
}

._headerActionMenuPrimary_12d87_901,
._headerActionMenuSecondary_12d87_902 {
  flex: 1 1 0;
  border: 0;
  border-radius: 8px;
  height: 36px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

._headerActionMenuPrimary_12d87_901 {
  background: rgb(234, 52, 39);
  color: white;
}

._headerActionMenuSecondary_12d87_902 {
  background: rgb(60, 60, 62);
  color: rgba(255, 255, 255, 0.92);
}

._workflowActionButton_12d87_922 {
  border: 1px solid rgba(194, 122, 58, 0.28);
  background: rgba(194, 122, 58, 0.12);
  color: #f5e1d1;
  border-radius: 999px;
  padding: 0 12px;
  height: 32px;
  text-transform: capitalize;
  font-size: 12px;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, border-color 0.18s ease;
}

._workflowActionButton_12d87_922:hover {
  background: rgba(194, 122, 58, 0.2);
  border-color: rgba(255, 255, 255, 0.28);
}

._detailActionRail_12d87_940 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 6px 0 18px;
}

._detailActionRailPrimary_12d87_949 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

._detailActionRailButton_12d87_955 {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  padding: 12px 16px;
  min-height: 46px;
  text-transform: capitalize;
  font-size: 13px;
  letter-spacing: 0.01em;
}

._detailActionRailButtonPrimary_12d87_967 {
  border-color: rgba(216, 162, 61, 0.24);
  background: rgba(216, 162, 61, 0.14);
  color: #f7d68b;
}

._detailActionRailButtonMuted_12d87_973 {
  background: rgba(106, 113, 122, 0.16);
  color: rgba(226, 230, 236, 0.9);
}

._detailActionRailButtonDanger_12d87_978 {
  border-color: rgba(255, 125, 125, 0.22);
  background: rgba(255, 125, 125, 0.12);
  color: #ffb0b0;
}

._detailActionRailMeta_12d87_984 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

._detailActionRailChip_12d87_990 {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

._detailActionRailChipFlagged_12d87_1003 {
  color: #f6d18b;
  background: rgba(216, 162, 61, 0.12);
}

._detailActionRailChipDanger_12d87_1008 {
  color: #ffb0b0;
  background: rgba(255, 125, 125, 0.12);
}

._inventoryActionRow_12d87_1013 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 12px;
}

._inventoryActionButton_12d87_1020 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease;
}

._inventoryActionButton_12d87_1020:hover {
  background: rgba(255, 255, 255, 0.085);
}

._inventoryActionButton_12d87_1020 svg {
  color: #c89200;
  flex-shrink: 0;
}

._inventoryActionButton_12d87_1020:disabled {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}

._inventoryActionButtonPrimary_12d87_1051 {
  background: rgba(200, 146, 0, 0.16);
}

._messageInfo_12d87_1055 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._bankLogo_12d87_1061 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

._messageDetails_12d87_1068 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #cccccc;
}

._detailsButton_12d87_1076 {
  background: none;
  border: none;
  color: #0e639c;
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
}

._detailsButton_12d87_1076:hover {
  color: #1177bb;
}

._messageBody_12d87_42 {
  -webkit-box-flex: 1;
  flex-grow: 1;
  overflow: hidden;
  min-height: 72px;
  padding: 16px;
  margin: 6px 16px 4px;
  min-block-size: 72px;
  border-radius: 5px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.65);
  background-color: rgb(28, 28, 30);
  display: flex;
  flex-direction: column;
}

._messageViewportStage_12d87_1104 {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

._emptyPaneState_12d87_1110 {
  flex: 1 1 auto;
  min-height: calc(100vh - 190px);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

._emptyPaneTitle_12d87_1121 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

._emptyPaneBody_12d87_1129 {
  margin: 10px 0 0;
  max-width: 420px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.46);
}

._emptyStatePlain_12d87_1137 {
  min-height: calc(100vh - 250px);
  padding: 32px 28px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(-28px);
}

._emptyStatePlainTitle_12d87_1148 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

._emptyStatePlainBody_12d87_1156 {
  margin: 10px 0 0;
  max-width: 320px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.46);
}

._messageBodyHeader_12d87_1164 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom-color: rgb(52, 52, 54);
  border-bottom-style: solid;
  border-bottom-width: 0.5px;

  ._messageBodyHeaderLeft_12d87_1175 {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 8px;

    ._messageBodyHeaderLeftInfo_12d87_1181 {
      display: flex;
      flex-direction: column;

      ._messageBodyChevronRight_12d87_1185 {
        display: none;
      }

      ._messageBodyHeaderLeftInfoTitle_12d87_1189 {
        font-size: 17px;
        font-weight: 500;
        color: #ffffff;
        margin: 0;
        padding-left: 6px;
        padding-right: 3px;
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        cursor: default;

        &:hover {
          background-color: rgba(255, 255, 255, 0.125);

          ._messageBodyChevronRight_12d87_1185 {
            display: block;
          }
        }
      }

      ._messageBodyHeaderLeftInfoSubtitle_12d87_1210 {
        font-size: 14px;
        font-weight: 400;
        color: #ffffff;
        margin: 0 6px;

        span {
          cursor: default;
          margin-left: 0px;
          margin-top: 0px;
          margin-bottom: 0px;
          padding-left: 5px;
          height: 18px;
          border: 1px solid transparent;
          border-radius: 6px;
          display: inline-flex;
          align-items: center;
          flex: 0;
          color: rgba(255, 255, 255, 0.5);

          &:hover {
            background-color: rgba(255, 255, 255, 0.125);
            color: rgba(255, 255, 255, 0.98);

            ._messageBodyChevronRight_12d87_1185 {
              display: block;
            }
          }
        }
      }
    }
  }

  ._messageBodyHeaderRight_12d87_1243 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    ._messageBodyHeaderRightDate_12d87_1248 {
      font-size: 14px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.66);
      cursor: default;
      margin: 0;
      padding: 0;
    }

    ._messageBodyHeaderStatusPill_12d87_1257 {
      margin-top: 4px;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(194, 122, 58, 0.22);
      color: rgba(255, 255, 255, 0.92);
      font-size: 11px;
      font-weight: 400;
      line-height: 1;
      white-space: nowrap;
    }

    ._messageDetailsButton_12d87_1269 {
      font-size: 14px;
      font-weight: 400;
      border-radius: 8px;
      padding: 6px 10px;
      color: rgb(194, 122, 58);
      border: none;
      margin: 0;
      background-color: transparent;
      cursor: pointer;

      &:hover {
        background-color: rgba(194, 122, 58, 0.12);
      }
    }
  }

  ._locationHeaderActions_12d87_1286 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }

  ._locationHeaderTitle_12d87_1293 {
    font-size: 24px !important;
    line-height: 1.05;
    margin-bottom: 5px !important;
  }
}

._locationMessageBodyHeader_12d87_1300 {
  align-items: flex-start;
}

._locationMessageBodyHeaderLeft_12d87_1304 {
  align-items: flex-start !important;
}

._locationHeaderActionActive_12d87_1308 {
  background-color: rgba(194, 122, 58, 0.2) !important;
  color: rgba(255, 255, 255, 0.98) !important;
}

._locationHeaderCapacityWrap_12d87_1313 {
  width: 100%;
  margin-top: 14px;
  overflow: hidden;
}

._locationHeaderCapacityTile_12d87_1319 {
  margin-top: 0;
  background-color: rgba(255, 255, 255, 0.075);
  border-radius: 6px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

._locationHeaderCapacityTile_12d87_1319 ._locationHeatmapLabel_12d87_1330 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 12px;
  margin: 0;
}

._locationHeaderCapacityTile_12d87_1319 ._locationCapacityHeader_12d87_1337 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

._locationHeaderCapacityTile_12d87_1319 ._locationCapacityBadge_12d87_1344 {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  line-height: 1;
}

._locationHeaderCapacityTile_12d87_1319 ._locationCapacityRows_12d87_1355 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

._locationHeaderCapacityTile_12d87_1319 ._locationCapacityRow_12d87_1355 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 12px 11px;
}

._locationHeaderCapacityTile_12d87_1319 ._locationCapacityRowHeader_12d87_1371 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

._locationHeaderCapacityTile_12d87_1319 ._locationCapacityLabel_12d87_1378 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.2;
  font-weight: 500;
}

._locationHeaderCapacityTile_12d87_1319 ._locationCapacityUtilization_12d87_1385 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  font-weight: 500;
}

._locationHeaderCapacityTile_12d87_1319 ._locationCapacityMeter_12d87_1392 {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

._locationHeaderCapacityTile_12d87_1319 ._locationCapacityFill_12d87_1400 {
  display: block;
  height: 100%;
  border-radius: 999px;
  transition: width 200ms ease;
}

._locationHeaderCapacityTile_12d87_1319 ._locationCapacityFillNormal_12d87_1407 {
  background: linear-gradient(90deg, rgba(52, 199, 89, 0.9), rgba(82, 221, 119, 0.9));
}

._locationHeaderCapacityTile_12d87_1319 ._locationCapacityFillWarning_12d87_1411 {
  background: linear-gradient(90deg, rgba(255, 159, 10, 0.92), rgba(255, 186, 73, 0.92));
}

._locationHeaderCapacityTile_12d87_1319 ._locationCapacityFillCritical_12d87_1415 {
  background: linear-gradient(90deg, rgba(255, 69, 58, 0.92), rgba(255, 105, 97, 0.92));
}

._locationHeaderCapacityTile_12d87_1319 ._locationCapacityMeta_12d87_1419 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1180px) {
  ._locationHeaderCapacityTile_12d87_1319 ._locationCapacityRows_12d87_1355 {
    grid-template-columns: 1fr;
  }
}

._messageBodyContent_12d87_42 {
  display: flex;
  flex-direction: column;
  width: 100%;

  ._locationDetailBody_12d87_1440 {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  ._productDetailBody_12d87_1446 {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  ._productionDetailBody_12d87_17 {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  ._productionHeatmapRow_12d87_1458 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  ._productionHeatmapTile_12d87_1464 {
    gap: 7px;
    min-height: 108px;
    border-radius: 6px;
  }

  ._productionHeatmapValue_12d87_1470 {
    font-size: 28px;
    line-height: 1;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.98);
    margin: 0;
  }

  ._productionHeatmapMeta_12d87_1478 {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.2;
    margin-top: auto;
  }

  ._productionFlowSeparator_12d87_17 {
    margin-top: 14px;
    height: auto;
    grid-template-columns: 1fr 140px 90px 90px;
    grid-template-rows: 1fr;
    align-items: stretch;
  }

  ._productionFlowSeparator_12d87_17 span {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  ._productionFlowItems_12d87_34 {
    grid-template-columns: 1fr 140px 90px 90px;
    grid-template-rows: none;
    grid-auto-rows: minmax(92px, auto);
    row-gap: 2px;
    align-items: stretch;
  }

  ._productionFlowItems_12d87_34 ._messageBodyContentItem_12d87_42 {
    margin: 0;
    padding: 8px 15px;
    align-self: stretch;
  }

  ._productionFlowItems_12d87_34 ._messageBodyContentItemTotals_12d87_47,
  ._productionFlowItems_12d87_34 ._messageBodyContentItemTotalsAmount_12d87_48 {
    align-self: center;
    margin: 0 15px;
  }

  ._productionFlowItems_12d87_34 ._messageBodyContentItemTotalsAmount_12d87_48 {
    font-weight: 600;
  }

  ._productionStreamPill_12d87_1524 {
    justify-self: start;
    align-self: center;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
  }

  ._productionStreamPillMaterial_12d87_1537 {
    background: rgba(66, 133, 244, 0.24);
  }

  ._productionStreamPillProduct_12d87_1541 {
    background: rgba(93, 190, 111, 0.24);
  }

  ._productionStreamPillLoss_12d87_1545 {
    background: rgba(255, 159, 10, 0.24);
  }

  ._productionMetricCard_12d87_1549 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  ._productionMetricValue_12d87_1560 {
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
  }

  ._productionSectionLabel_12d87_1567 {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
    margin-top: 4px;
  }

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

    ._productionFlowSeparator_12d87_17,
    ._productionFlowItems_12d87_34 {
      grid-template-columns: 1fr 120px 80px 80px;
    }
  }

  ._productDetailBody_12d87_1446 ._messageBodyContentFooter_12d87_1586 {
    margin-top: -12px;
  }

  ._productDetailBody_12d87_1446 ._messageBodyContentFooter_12d87_1586 ._messageBodyContentFooterSubAlt_12d87_1590 {
    margin: 6px 15px;
  }

  ._locationDetailBody_12d87_1440 ._messageBodyContentFooter_12d87_1586 {
    margin-top: -18px;
  }

  ._locationDetailBody_12d87_1440 ._messageBodyContentFooter_12d87_1586 ._messageBodyContentFooterSubAlt_12d87_1590 {
    margin: 6px 15px;
  }

  ._productTopSection_12d87_1602 {
    display: grid;
    grid-template-columns: minmax(0, 1.52fr) minmax(248px, 0.48fr);
    column-gap: 12px;
    row-gap: 16px;
    align-items: stretch;
  }

  ._productTopSpacer_12d87_1610 {
    display: none;
  }

  ._productDetailsCol_12d87_1614 {
    padding-left: 0;
    border-left: none;
    min-width: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-self: stretch;
  }

  ._productPhotoGrid_12d87_1624 {
    margin: 0;
    width: 100%;
    min-width: 0;
    height: 100%;
  }

  ._productPhotoGrid_12d87_1624:has(._productPhotoGridEmpty_12d87_1631) {
    display: flex;
  }

  ._productPhotoGridEmpty_12d87_1631 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.075);
    border-radius: 6px;
    padding: 24px 20px;
    box-sizing: border-box;
    width: 100%;
    min-height: 160px;
    flex: 1;
  }

  ._productDetailsCard_12d87_1650 {
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.075);
    padding: 10px 10px;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 100%;
    max-height: 100%;
    height: 100%;
    width: 100%;
    flex: 1 1 auto;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  ._productDetailsName_12d87_1669 {
    font-size: 15px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.96);
    font-weight: 500;
    margin-top: 2px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  ._productDetailsRows_12d87_1681 {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  ._productDetailsCategoryPill_12d87_1687 {
    align-self: flex-start;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(194, 122, 58, 0.16);
    color: rgba(255, 255, 255, 0.88);
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
  }

  ._productDetailsPrimaryRow_12d87_1698 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  ._productDetailsPrimaryCard_12d87_1704 {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 5px 7px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  ._productDetailsPrimaryLabel_12d87_1714 {
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
    line-height: 1;
  }

  ._productDetailsPrimaryValue_12d87_1720 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  ._productDetailsRow_12d87_1681 {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  ._productDetailsRow_12d87_1681:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  ._productDetailsRowLabel_12d87_1743 {
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
  }

  ._productDetailsRowValue_12d87_1750 {
    font-size: 12px;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: auto;
    max-width: 58%;
  }

  ._productStockStatusPill_12d87_1761 {
    margin-top: 2px;
    align-self: flex-start;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(93, 190, 111, 0.2);
    color: rgba(255, 255, 255, 0.92);
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
  }

  ._productStockTileCard_12d87_1773 {
    background: rgba(255, 255, 255, 0.075);
    border-radius: 6px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  ._productStockTileGrid_12d87_1783 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  ._productStockTile_12d87_1773 {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 88px;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  ._productStockTileHeader_12d87_1800 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
  }

  ._productStockTileLocation_12d87_1807 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  ._productStockTileStatus_12d87_1818 {
    flex-shrink: 0;
    border-radius: 999px;
    padding: 3px 7px;
    font-size: 11px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(93, 190, 111, 0.2);
  }

  ._productStockTileType_12d87_1828 {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.2;
  }

  ._productStockTileQty_12d87_1834 {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.1;
    font-weight: 500;
  }

  ._locationHeaderSection_12d87_1842 {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  ._locationHeaderSectionExpanded_12d87_1848 {
    gap: 20px;
  }

  ._locationTopSection_12d87_1852 {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
    gap: 16px;
    align-items: stretch;
  }

  ._locationStatsColumn_12d87_1859 {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1px;
    border-radius: 6px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.075);
  }

  ._locationBottomSection_12d87_1868 {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 16px;
    align-items: start;
  }

  ._locationPhotoGrid_12d87_1875 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1px;
    aspect-ratio: 2 / 1;
    height: auto;
    margin-bottom: 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.075);

    ._locationPhotoMain_12d87_1887,
    ._locationPhotoQuarter_12d87_1888 {
      overflow: hidden;
      background-color: rgba(255, 255, 255, 0.075);

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
    }

    ._locationPhotoButton_12d87_1900 {
      width: 100%;
      height: 100%;
      padding: 0;
      margin: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      display: block;
    }

    ._locationPhotoMain_12d87_1887 {
      grid-column: 1 / 3;
      grid-row: 1 / 3;
    }

    ._locationPhotoQuarter_12d87_1888 {
      aspect-ratio: 1 / 1;
    }
  }

  ._locationAddressCard_12d87_1921 {
    background-color: rgba(255, 255, 255, 0.075);
    border-radius: 6px;
    padding: 14px 16px 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 164px;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
  }

  ._locationAddressHeader_12d87_1934 {
    display: block;
    margin-bottom: 2px;
  }

  ._locationShareButton_12d87_1939 {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: background-color 140ms ease, color 140ms ease;
  }

  ._locationShareButton_12d87_1939:hover {
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.98);
  }

  ._locationAddressTitle_12d87_1961 {
    color: rgba(255, 255, 255, 0.98);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    margin: 0 0 10px;
  }

  ._locationAddressLine_12d87_1969 {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 16px;
    margin: 0 0 3px;
  }

  ._locationAddressPills_12d87_1976 {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  ._locationAddressPill_12d87_1976 {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(194, 122, 58, 0.16);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  ._locationHeatmapTile_12d87_1996 {
    background-color: rgba(255, 255, 255, 0.075);
    padding: 14px 15px 13px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    box-sizing: border-box;
  }

  ._locationCapacityTile_12d87_2006 {
    margin-top: 1px;
    border-radius: 6px;
    gap: 16px;
    padding: 18px 18px 16px;
  }

  ._locationCapacityHeader_12d87_1337 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  ._locationCapacityBadge_12d87_1344 {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
    font-size: 11px;
    line-height: 1;
  }

  ._locationCapacityRows_12d87_1355 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  ._locationCapacityRow_12d87_1355 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px 12px 11px;
  }

  ._locationCapacityRowHeader_12d87_1371 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  ._locationCapacityLabel_12d87_1378 {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.2;
    font-weight: 500;
  }

  ._locationCapacityUtilization_12d87_1385 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    font-weight: 500;
  }

  ._locationCapacityMeter_12d87_1392 {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }

  ._locationCapacityFill_12d87_1400 {
    display: block;
    height: 100%;
    border-radius: 999px;
    transition: width 200ms ease;
  }

  ._locationCapacityFillNormal_12d87_1407 {
    background: linear-gradient(90deg, rgba(52, 199, 89, 0.9), rgba(82, 221, 119, 0.9));
  }

  ._locationCapacityFillWarning_12d87_1411 {
    background: linear-gradient(90deg, rgba(255, 159, 10, 0.92), rgba(255, 186, 73, 0.92));
  }

  ._locationCapacityFillCritical_12d87_1415 {
    background: linear-gradient(90deg, rgba(255, 69, 58, 0.92), rgba(255, 105, 97, 0.92));
  }

  ._locationCapacityMeta_12d87_1419 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.62);
  }

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

  ._locationHeatmapLabel_12d87_1330 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    margin: 0 0 8px;
    line-height: 12px;
  }

  ._locationHeatmapMap_12d87_2118 ._locationHeatmapLabel_12d87_1330 {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(22, 22, 24, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
  }

  ._locationHeatmapValue_12d87_2131 {
    color: rgba(255, 255, 255, 0.98);
    font-size: 30px;
    line-height: 32px;
    font-weight: 500;
    margin: 0;
  }

  ._locationStatButton_12d87_2139 {
    margin-top: auto;
    align-self: flex-start;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
  }

  ._locationHeatmapMeta_12d87_2152 {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 17px;
    margin-top: 8px;
  }

  ._locationHeatmapMap_12d87_2118 {
    justify-content: flex-start;
    position: relative;
    padding: 0;
    height: 164px;
    overflow: hidden;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.075);
  }

  ._locationMapFrame_12d87_2169 {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    margin: 0;

    img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }
  }

  ._locationMapImageDark_12d87_2187 {
    display: block;
  }

  ._locationMapImageLight_12d87_2191 {
    display: none;
  }

  ._locationMapPinWrap_12d87_2195 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  ._locationMapPinImage_12d87_2208 {
    width: 26px;
    height: 26px;
    display: block;
  }

  ._locationHeatmapMap_12d87_2118 ._locationHeatmapMeta_12d87_2152 {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    margin: 0;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(22, 22, 24, 0.52);
    backdrop-filter: blur(6px);
  }

  ._locationDetailBody_12d87_1440 ._messageBodyContentFooter_12d87_1586 {
    margin-top: 0;
  }

  ._messageBodyContentHeaders_12d87_2230 {
    display: grid;
    width: 100%;
    align-self: center;
    min-height: 60px;
    max-height: 360px;
    overflow-y: auto;
    gap: 1px;
    grid-template-columns: 32.5% 32.5% calc(35% - 3px);
    grid-auto-rows: 60px;

    ._messageBodyContentHeadersTitle_12d87_2241 {
      color: rgba(255, 255, 255, 0.5);
      font-size: 11px;
      margin: 0 0 5px;
      line-height: 12px;
      display: block;
    }

    ._messageBodyContentHeadersSubTitle_12d87_2249 {
      color: rgba(255, 255, 255, 0.98);
      font-size: 14px;
      margin: 0;
      display: flex;
      align-items: center;
      line-height: 15px;
      line-break: anywhere;
    }

    ._messageBodyContentHeadersItemL_12d87_2259 {
      grid-column: 3 / 4;
      grid-row: 1 / 3;
      background-color: rgba(255, 255, 255, 0.075);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 14px 15px 12px;
      overflow: hidden;
      border-top-right-radius: 5px;
      gap: 2px;

      ._messageBodyContentHeadersSubTitle_12d87_2249 {
        line-height: 18px;
      }

      ._messageBodyContentHeadersPill_12d87_2275 {
        align-self: flex-start;
        margin-top: 7px;
        padding: 3px 7px;
        border-radius: 999px;
        background: rgba(194, 122, 58, 0.22);
        color: rgba(255, 255, 255, 0.92);
        font-size: 11px;
        line-height: 1;
        display: inline-block;
        max-width: calc(100% - 4px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: border-box;
      }
    }

    ._messageBodyContentHeadersItemFrom_12d87_2293 {
      grid-column: 3 / 4;
      grid-row: 3 / 4;
      background-color: rgba(255, 255, 255, 0.075);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 12px 15px 11px;
      overflow: hidden;
      border-bottom-right-radius: 5px;
      gap: 2px;

      ._messageBodyContentHeadersSubTitle_12d87_2249 {
        line-height: 18px;
      }

      ._messageBodyContentHeadersPill_12d87_2275 {
        align-self: flex-start;
        margin-top: 7px;
        padding: 3px 7px;
        border-radius: 999px;
        background: rgba(194, 122, 58, 0.22);
        color: rgba(255, 255, 255, 0.92);
        font-size: 11px;
        line-height: 1;
        display: inline-block;
        max-width: calc(100% - 4px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: border-box;
      }
    }

    ._messageBodyContentHeadersItemS_12d87_2327 {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 10px 15px;
      background-color: rgba(255, 255, 255, 0.075);
      overflow: hidden;

      ._messageBodyContentHeadersPill_12d87_2275 {
        align-self: flex-start;
        margin-top: 3px;
        padding: 3px 7px;
        border-radius: 999px;
        background: rgba(194, 122, 58, 0.22);
        color: rgba(255, 255, 255, 0.92);
        font-size: 11px;
        font-weight: 400;
        line-height: 1;
        display: inline-block;
        max-width: calc(100% - 4px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: border-box;
      }
    }

    ._messageBodyContentHeadersItemS_draftedBy_12d87_2354 {
      grid-column: 1 / 2;
      grid-row: 1;
      border-top-left-radius: 5px;
    }

    ._messageBodyContentHeadersItemS_date_12d87_2360 {
      grid-column: 2 / 3;
      grid-row: 1;
    }

    ._messageBodyContentHeadersItemS_receiptNo_12d87_2365 {
      grid-column: 1 / 2;
      grid-row: 2;
    }

    ._messageBodyContentHeadersItemS_sequenceNo_12d87_2370 {
      grid-column: 2 / 3;
      grid-row: 2;
    }

    ._messageBodyContentHeadersItemS_transferId_12d87_2375 {
      grid-column: 1 / 2;
      grid-row: 3;
      border-bottom-left-radius: 5px;
    }

    ._messageBodyContentHeadersItemS_documentNo_12d87_2381 {
      grid-column: 2 / 3;
      grid-row: 3;
    }

    ._messageBodyContentHeadersItemL_12d87_2259,
    ._messageBodyContentHeadersItemFrom_12d87_2293 {
      border-bottom-right-radius: 5px;
    }
  }

  ._messageBodyContentSeparator_12d87_2392 {
    margin: 25px 0 0px;
    font-weight: 400;
    display: grid;
    width: 100%;
    align-self: center;
    gap: 1px;
    height: 40px;
    grid-template-columns: 47.5% 26.25% calc(26.25% - 2px);
    grid-template-rows: 1fr 1fr 1fr;

    span {
      padding: 5px 15px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      background-color: rgba(255, 255, 255, 0.075);
      text-align: center;

      &:first-of-type {
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
      }

      &:last-of-type {
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
      }
    }

  }

  ._messageBodyContentItems_12d87_2423 {
    font-weight: 400;
    display: grid;
    width: 100%;
    align-self: center;
    gap: 1px;
    grid-template-columns: 47.5% 26.25% calc(26.25% - 2px);
    grid-template-rows: 1fr 1fr 1fr;

    ._messageBodyContentItem_12d87_42 {
      display: flex;
      padding: 0px 15px;
      margin: 7.5px 0;
      gap: 15px;

      ._messageBodyContentItemImage_12d87_2438 {
        width: 60px;
        height: 75px;
        flex-shrink: 0;
        border-radius: 5px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        object-fit: cover;
      }

      ._messageBodyContentItemDetails_12d87_2447 {
        display: flex;
        flex-direction: column;

        ._messageBodyContentItemDetailsTitle_12d87_2451 {
          font-size: 14px;
          font-weight: 500;
          margin: 0;
        }

        ._messageBodyContentItemDetailsSubTitle_12d87_2457 {
          font-size: 12px;
          line-height: 15px;
          font-weight: 400;
          margin: 0;
          color: rgba(255, 255, 255, 0.5);
        }
      }

    }

    ._messageBodyContentItemTotals_12d87_47 {
      text-align: right;
      margin: 0 15px;
      font-size: 14px;
    }

    ._messageBodyContentItemTotalsAmount_12d87_48 {
      text-align: right;
      margin: 0 15px;
      font-size: 14px;
      font-weight: 500;
    }

  }

  ._messageBodyContentFooter_12d87_1586 {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-top: 6px;

    ._messageBodyContentFooterSub_12d87_1590 {
      display: flex;
      margin: 0 15px;

      ._messageBodyContentFooterSubTitle_12d87_2493 {
        flex: 1;
        text-align: right;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
      }

      ._messageBodyContentFooterSubSubTitle_12d87_2500 {
        width: 12%;
        text-align: right;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 1);
      }
    }

    ._messageBodyContentFooterSubAlt_12d87_1590 {
      display: flex;
      margin: 6px 15px;

      ._messageBodyContentFooterSubAltTitle_12d87_2513 {
        flex: 1;
        text-align: left;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
      }
    }

    ._messageBodyContentFooterMain_12d87_2521 {
      display: flex;
      align-items: center;
      margin: 0 0 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);

      ._messageBodyContentFooterMainTitle_12d87_2528 {
        flex: 1;
        text-align: left;
        display: flex;
        justify-content: flex-start;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 500;
        padding: 15px 25px;
        height: 100%;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
      }

      ._messageBodyContentFooterMainSubTitle_12d87_2541 {
        width: auto;
        flex: 0 0 auto;
        text-align: left;
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 1);
        margin: 0 15px;
      }
    }
  }

  ._gatepassDetailSection_12d87_2553 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 14px 15px 0;
  }

  ._gatepassDetailSectionHeader_12d87_2560 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  ._gatepassDetailSectionLabel_12d87_2567 {
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
  }

  ._gatepassDetailSectionCount_12d87_2575 {
    font-size: 11px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.54);
  }

  ._gatepassDetailGrid_12d87_2581 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
  }

  ._gatepassDetailCard_12d87_2587 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 13px;
    min-height: 132px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
  }

  ._gatepassDetailCardTop_12d87_2599 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  ._gatepassDetailCode_12d87_2606 {
    font-size: 15px;
    line-height: 1.1;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  ._gatepassDetailStatus_12d87_2616 {
    flex-shrink: 0;
    font-size: 11px;
    line-height: 1;
    padding: 4px 7px;
    border-radius: 999px;
    background: rgba(194, 122, 58, 0.22);
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
  }

  ._gatepassDetailType_12d87_2627 {
    font-size: 12px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.68);
  }

  ._gatepassDetailMeta_12d87_2633 {
    display: grid;
    gap: 4px;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.58);
  }

  ._gatepassDetailFooter_12d87_2641 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.58);
  }

  ._gatepassDetailNotes_12d87_2651 {
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.54);
  }

  ._gatepassPrintBtn_12d87_2657 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
  }
  ._gatepassPrintBtn_12d87_2657:hover {
    background: rgba(255, 255, 255, 0.14);
  }

  ._gatepassDetailEmpty_12d87_2676 {
    padding: 12px 13px;
    border-radius: 10px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    line-height: 1.45;
  }

}

._locationViewerOverlay_12d87_2688 {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.84);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

._locationViewerContent_12d87_2696 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(88vw, 980px);
  height: min(82vh, 720px);
  background: rgb(28, 28, 30);
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 20px 60px 0px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  box-sizing: border-box;
  z-index: 1001;
  overflow: hidden;

  &:focus {
    outline: none;
  }
}

._locationViewerClose_12d87_2718 {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: none;
  outline: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

._locationViewerClose_12d87_2718:focus,
._locationViewerClose_12d87_2718:focus-visible {
  outline: none;
  box-shadow: none;
}

._locationViewerBody_12d87_2746 {
  flex: 1;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 14px;
  align-items: center;
  min-height: 0;
  overflow: hidden;
}

._artifactViewerBody_12d87_2756 {
  flex: 1;
  display: flex;
  min-height: 0;
  overflow: hidden;
}

._locationViewerNav_12d87_2763 {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

._locationViewerImageWrap_12d87_2776 {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}

._locationViewerImage_12d87_2776 {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}

._artifactViewerToolbar_12d87_2800 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 96px 14px 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.2;
  position: relative;
}

._artifactViewerToolbarGroup_12d87_2812 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

._artifactViewerZoomButton_12d87_2818,
._artifactViewerZoomReset_12d87_2819 {
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

._artifactViewerZoomButton_12d87_2818:focus,
._artifactViewerZoomButton_12d87_2818:focus-visible,
._artifactViewerZoomReset_12d87_2819:focus,
._artifactViewerZoomReset_12d87_2819:focus-visible {
  outline: none;
  box-shadow: none;
}

._artifactViewerZoomButton_12d87_2818 {
  width: 36px;
  height: 36px;
  display: flex;
  border-radius: 10px;
}

._artifactViewerZoomIcon_12d87_2849 {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

._artifactViewerZoomReset_12d87_2819 {
  min-width: 64px;
  height: 36px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

._artifactViewerZoomButton_12d87_2818:hover,
._artifactViewerZoomReset_12d87_2819:hover {
  background: rgba(255, 255, 255, 0.14);
}

._artifactViewerToolbarHint_12d87_2869 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 34%;
  font-weight: 400;
}

._artifactViewerViewport_12d87_2877 {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 12px;
  overflow: auto;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  padding: 12px;
  box-sizing: border-box;
  touch-action: pan-x pan-y;
  user-select: none;
  -webkit-user-select: none;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

._locationViewerContent_12d87_2696 {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

._locationViewerContent_12d87_2696::-webkit-scrollbar,
._artifactViewerViewport_12d87_2877::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

._artifactViewerCanvas_12d87_2907 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: top left;
  will-change: transform;
  cursor: inherit;
}

._artifactViewerMediaFrame_12d87_2917 {
  display: block;
  max-width: none;
  max-height: none;
  object-fit: contain;
  margin: 0;
  transform-origin: center center;
  will-change: transform;
  transition: transform 120ms ease-out;
}

._artifactViewerFileFallback_12d87_2928 {
  width: min(520px, 100%);
  min-height: 320px;
  margin: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  box-sizing: border-box;
  text-align: center;
}

._artifactViewerFileExtension_12d87_2945 {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.94);
}

._artifactViewerFileName_12d87_2953 {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
  word-break: break-word;
}

._artifactViewerFooter_12d87_2961 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 18px;
  margin-top: 14px;
  column-gap: 16px;
}

._artifactViewerFooter_12d87_2961 > :first-child {
  justify-self: start;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._artifactViewerFooterHint_12d87_2979 {
  justify-self: center;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
}

._artifactViewerFooter_12d87_2961 > :last-child {
  justify-self: end;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._PaymentOverlay_12d87_2995 {
  background-color: rgba(10, 10, 10, 0.8);
  position: fixed;
  inset: 0;
  z-index: 3000;
  animation: _overlayShow_12d87_1 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

._PaymentOverlayContent_12d87_3003 {
  background-color: rgb(28, 28, 30);
  border-radius: 10.5px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 15px 0px, rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 860px;
  height: 640px;
  animation: _contentShow_12d87_1 150ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  overflow: hidden;
  z-index: 3001;

  &:focus {
    outline: none;
  }

  ._PaymentOverlayContentSidebar_12d87_3023 {
    padding: 15px 10px;
    width: 240px;
    border-right: 1px solid #3e3e42;
    background-color: rgb(32, 32, 35);
    display: flex;
    flex-direction: column;
  }

  ._PaymentOverlayCloseIcon_12d87_3032 {
    margin-left: 5px;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 2px;
    cursor: pointer;
    background-color: rgb(32, 32, 35);

    &:hover {
      background-color: #3e3e42;
    }

    &:active {
      background-color: #3e3e4299;
    }
  }

  ._PaymentOverlayContentMain_12d87_3049 {
    padding: 20px 20px 14px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;

    ._PaymentOverlayContentMainTitle_12d87_3057 {
      font-size: 17px;
      font-weight: 500;
      color: #ffffff;
      margin: 0 0 10px 0;
    }

    ._PaymentOverlayContentMainSection_12d87_3064 {
      display: flex;
      flex-direction: column;
      margin: 5px 0;
      margin-bottom: 15px;
      flex: 1;
      min-height: 0;
      overflow: hidden;

      ._PaymentOverlayContentMainSectionTitle_12d87_3073 {
        font-size: 14px;
        font-weight: 500;
        color: #ffffff;
        margin: 7.5px 0;
      }

      ._PaymentOverlayContentMainSectionValue_12d87_3080 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid rgb(60, 60, 62);
        font-size: 14px;
        font-weight: 400;
        border-radius: 8px;
        width: 100%;
        height: auto;
        padding: 8px 10px;
        margin: 0;

        &._Static_12d87_3093 {
          background-color: rgb(60, 60, 62);
        }
      }

      ._PaymentOverlayContentMainSectionFlex_12d87_3098 {
        display: flex;
        gap: 10px;
      }

      ._PaymentOverlayContentMainSectionBtnPrimary_12d87_3103 {
        color: rgb(28, 28, 30);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 400;
        border-radius: 8px;
        min-width: 100px;
        max-width: fit-content;
        height: auto;
        padding: 8px 10px;
        margin: 0;
        background-color: rgba(255, 255, 255, 0.96);
        cursor: pointer;
        border: 0;
        appearance: none;
        -webkit-appearance: none;
      }

      ._PaymentOverlayContentMainSectionBtnSecondary_12d87_3123 {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 400;
        border-radius: 8px;
        min-width: 100px;
        max-width: fit-content;
        height: auto;
        padding: 8px 10px;
        margin: 0;
        background-color: rgba(255, 255, 255, 0.06);
        box-shadow: inset 0 0 0 1px rgba(120, 120, 128, 0.24);
        cursor: pointer;
        border: 0;
        appearance: none;
        -webkit-appearance: none;
      }

      ._PaymentOverlayContentMainSectionBody_12d87_3143 {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.66);
        font-weight: 400;
        width: 100%;
        height: auto;
        padding: 8px 0px;
        margin: 0;
        background-color: rgba(60, 60, 62, 0);

      }

      ._PaymentOverlayContentMainSectionTable_12d87_3155 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;

        ._messageBodyContentHeadersItem_12d87_2259 {
          border: 1px solid rgb(60, 60, 62);
          border-radius: 8px;
          display: grid;
          position: relative;
          overflow: hidden;
          width: 135px;
          aspect-ratio: 1.5;
          background-color: rgba(255, 255, 255, 0.033);
          cursor: pointer;

          ._messageBodyContentHeadersItemTAMT_12d87_3171 {
            position: absolute;
            text-align: center;
            top: 5px;
            right: 10px;
            font-size: 16px;
            font-weight: 500;
            user-select: none;
            cursor: default;
          }

          ._messageBodyContentHeadersItemTPICON_12d87_3182 {
            align-self: center;
            justify-self: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 10px;
            line-height: 13px;
            text-align: center;
            padding-top: 20px;
            color: rgba(255, 255, 255, 0.65);

            svg {
              color: rgba(255, 255, 255, 0.65);
            }
          }
        }
      }

      ._PaymentOverlayContentMainSectionTable1_12d87_3201 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 10px;

        ._messageBodyContentHeadersItem_12d87_2259 {
          border: 1px solid rgb(60, 60, 62);
          border-radius: 8px;
          display: grid;
          position: relative;
          overflow: hidden;
          width: 100px;
          aspect-ratio: 1.5;
          background-color: rgba(255, 255, 255, 0.033);
          cursor: pointer;

          &._disabled_12d87_3217 {
            border: 1px dashed rgb(99, 99, 102);
            opacity: 0.5;
            pointer-events: none;
          }

          ._messageBodyContentHeadersItemTAMT_12d87_3171 {
            position: absolute;
            text-align: center;
            top: 5px;
            right: 10px;
            font-size: 16px;
            font-weight: 500;
            user-select: none;
            cursor: default;
          }

          ._messageBodyContentHeadersItemTPICON_12d87_3182 {
            align-self: center;
            justify-self: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 10px;
            line-height: 13px;
            text-align: center;
            color: rgba(255, 255, 255, 0.65);

            span {
              font-size: 32px;
            }

            svg {
              color: rgba(255, 255, 255, 0.65);
            }
          }
        }
      }

      &._PaymentOverlayContentMainSectionGrid_12d87_3256 {
        display: grid;
        grid-template-columns: 1fr 1fr;

        ._PaymentOverlayContentMainSectionValue_12d87_3080 {
          width: 80%;
        }
      }
    }

  }

}

._PaymentOverlayContent_12d87_3003:has([data-draft-date-picker-portal]) {
  overflow: visible;
}

._overlaySidebarNav_12d87_3274 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

._overlaySidebarItem_12d87_3280 {
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
  transition: 120ms ease;

  svg {
    color: rgb(194, 122, 58);
    flex-shrink: 0;
  }
}

._overlaySidebarItem_12d87_3280:hover {
  background: rgba(255, 255, 255, 0.06);
}

._overlaySidebarItemActive_12d87_3303 {
  border-color: rgba(194, 122, 58, 0.35);
  background: rgba(194, 122, 58, 0.16);
}

._overlaySidebarContext_12d87_3308 {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

._overlaySidebarLabel_12d87_3315 {
  font-size: 11px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
}

._overlaySidebarCard_12d87_3321 {
  border-radius: 10px;
  border: 1px solid rgba(120, 120, 128, 0.2);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

._overlaySidebarTitle_12d87_3331 {
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 500;
}

._overlaySidebarMeta_12d87_3338 {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

._overlaySidebarPill_12d87_3343 {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  padding: 4px 8px;
}

._overlayTitleTab_12d87_3352 {
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
}

._overlayTitleDivider_12d87_3357 {
  color: rgba(255, 255, 255, 0.5);
}

._overlayTitleCurrent_12d87_3361 {
  color: rgba(255, 255, 255, 0.96);
}

._overlaySearchSection_12d87_3365 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

._overlayInventorySearchList_12d87_3372 {
  border: 1px solid rgba(120, 120, 128, 0.28);
  border-radius: 10px;
  overflow: auto;
  max-height: 260px;
}

._overlayInventorySearchRow_12d87_3379 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border-bottom: 1px solid rgba(120, 120, 128, 0.2);
  padding: 9px 10px;
  cursor: pointer;
}

._overlayInventorySearchRow_12d87_3379:last-child {
  border-bottom: none;
}

._overlayInventorySearchRow_12d87_3379:hover {
  background: rgba(120, 120, 128, 0.14);
}

._overlayInventorySearchRowSelected_12d87_3396,
._overlayInventorySearchRowSelected_12d87_3396:hover {
  background: rgba(120, 120, 128, 0.18);
}

._overlayInventorySearchRowMain_12d87_3401,
._overlayInventorySearchRowRight_12d87_3402 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

._overlayInventorySearchRowMain_12d87_3401 span:first-child {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

._overlayInventorySearchRowMain_12d87_3401 span:last-child,
._overlayInventorySearchRowRight_12d87_3402 span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.66);
}

._overlayButtonRow_12d87_3420 {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-shrink: 0;
  justify-content: flex-end;
  padding: 0 16px 4px;

  button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    font-weight: 400 !important;
    border-radius: 8px !important;
    padding: 8px 10px !important;
    min-width: 100px;
    border: 0 !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: opacity 120ms ease;
    line-height: 1.3;
    max-width: none !important;
  }

  ._PaymentOverlayContentMainSectionBtnPrimary_12d87_3103 {
    background-color: rgba(255, 255, 255, 0.92) !important;
    color: rgb(28, 28, 30) !important;
    border-radius: 8px !important;
    padding: 8px 10px !important;
    font-size: 14px !important;
    min-width: 100px !important;
  }

  ._PaymentOverlayContentMainSectionBtnSecondary_12d87_3123 {
    background-color: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.82) !important;
    border-radius: 8px !important;
    padding: 8px 10px !important;
    font-size: 14px !important;
    box-shadow: inset 0 0 0 1px rgba(120, 120, 128, 0.24) !important;
  }

  ._disabled_12d87_3217 {
    opacity: 0.5;
    pointer-events: none;
  }
}

._overlayBtnPrimaryPill_12d87_3470 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  border-radius: 8px;
  padding: 8px 10px;
  min-width: 100px;
  border: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: opacity 120ms ease;
  line-height: 1.3;
  background-color: rgba(255, 255, 255, 0.92);
  color: rgb(28, 28, 30);
}

._overlayBtnSecondaryPill_12d87_3489 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  border-radius: 8px;
  padding: 8px 10px;
  min-width: 100px;
  border: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: opacity 120ms ease;
  line-height: 1.3;
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(120, 120, 128, 0.24);
}

/* Placeholder so CSS modules exposes the class name; light-mode overrides below. */
._directoryEditPane_12d87_3510 {
  ._PaymentOverlayContentSidebar_12d87_3023 { display: none; }
}

._overlayBackButton_12d87_3514 {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  border-radius: 8px;
  padding: 6px 12px;
  margin: 0 0 0 16px;
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(120, 120, 128, 0.24);
  cursor: pointer;
  border: 0;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}

._overlayInsightGrid_12d87_3531 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

._overlayInsightCard_12d87_3538 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1px solid rgba(120, 120, 128, 0.22);
  background: rgba(255, 255, 255, 0.032);
}

._overlayInsightLabel_12d87_3548 {
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
}

._overlayInsightValue_12d87_3556 {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
}

._overlayInsightCaption_12d87_3563 {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.58);
}

._overlayCallout_12d87_3569 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 13px 14px;
  margin-bottom: 10px;
  border-radius: 12px;
  border: 1px solid rgba(120, 120, 128, 0.2);
}

._overlayCalloutNeutral_12d87_3579 {
  background: rgba(255, 255, 255, 0.04);
}

._overlayCalloutWarning_12d87_3583 {
  background: rgba(194, 122, 58, 0.08);
  border-color: rgba(194, 122, 58, 0.24);
}

._overlayCalloutPositive_12d87_3588 {
  background: rgba(84, 158, 107, 0.11);
  border-color: rgba(84, 158, 107, 0.28);
}

._overlayCalloutTop_12d87_3593 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

._overlayCalloutLabel_12d87_3600 {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

._overlayCalloutTitle_12d87_3614 {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
}

._overlayCalloutBody_12d87_3621,
._overlayCalloutFooter_12d87_3622 {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

._overlayFormSection_12d87_3629 {
  border: 1px solid rgba(120, 120, 128, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.022) 100%),
    rgba(255, 255, 255, 0.018);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

._overlayFormSectionCompact_12d87_3642 {
  padding: 12px;
  gap: 10px;
}

._overlayFormSectionPlain_12d87_3647 {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(120, 120, 128, 0.18);
}

._overlayFormSectionHeader_12d87_3655 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

._overlayFormSectionEyebrow_12d87_3662 {
  margin: 0;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

._overlayFormSectionTitle_12d87_3671 {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

._overlayFormSectionBody_12d87_3679 {
  margin: 0;
  max-width: 760px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.64);
}

._overlaySectionHeader_12d87_3687 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

._overlaySectionAction_12d87_3693 {
  margin: 0;
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(120, 120, 128, 0.22);
}

._overlaySectionAction_12d87_3693:hover {
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.1);
}

._overlayFieldFlex_12d87_3715 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

._overlayChipGrid_12d87_3722 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

._PaymentOverlayContentMainSectionDocs_12d87_3729 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  max-height: 320px;
  overflow-y: auto;

  ._overlayDocumentMatchCard_12d87_3737 {
    position: relative;
    border: 1px solid rgb(60, 60, 62);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.033);
    min-width: 0;
    min-height: 106px;
    cursor: pointer;
    padding: 8px;
  }

  ._overlayDocumentPreviewWrap_12d87_3748 {
    position: relative;
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
  }

  ._overlayDocumentPreview_12d87_3748 {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  ._overlayDocumentPreviewFallback_12d87_3770 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px;
    box-sizing: border-box;
    text-align: center;
  }

  ._overlayDocumentPreviewExt_12d87_3783 {
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.86);
  }

  ._overlayDocumentPreviewName_12d87_3791 {
    font-size: 10px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.62);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
  }

  ._overlayDocumentMeta_12d87_3802 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0 0;
    min-width: 0;
  }

  ._overlayDocumentMetaHeader_12d87_3810 {
    display: flex;
    align-items: center;
    min-width: 0;
  }

  ._overlayDocumentName_12d87_3816 {
    flex: 1;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  ._overlayDocumentType_12d87_3827 {
    font-size: 10px;
    line-height: 12px;
    color: rgba(255, 255, 255, 0.66);
  }

  ._overlayDocumentDate_12d87_3833 {
    font-size: 11px;
    line-height: 13px;
    color: rgba(255, 255, 255, 0.6);
  }
}

._inventoryAuditModal_12d87_3840 {
  background-color: rgb(28, 28, 30);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.22) 0px 20px 60px, rgba(0, 0, 0, 0.12) 0px 0px 0px 1px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, 92vw);
  max-height: min(78vh, 780px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 3001;
}

._inventoryAuditModal_12d87_3840:focus {
  outline: none;
}

._inventoryAuditModalHeader_12d87_3860 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

._inventoryAuditModalHeaderCopy_12d87_3869 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

._inventoryAuditModalHeaderCopy_12d87_3869 h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
}

._inventoryAuditModalHeaderCopy_12d87_3869 span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
}

._inventoryAuditModalBody_12d87_3887 {
  padding: 18px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

._inventoryAuditTimeline_12d87_3895 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

._inventoryAuditItem_12d87_3901 {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
}

._inventoryAuditRail_12d87_3907 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

._inventoryAuditDot_12d87_3914 {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  flex: 0 0 auto;
}

._inventoryAuditDot_12d87_3914[data-tone="success"] {
  background: rgba(70, 194, 118, 0.96);
}

._inventoryAuditDot_12d87_3914[data-tone="warning"] {
  background: rgba(255, 164, 61, 0.96);
}

._inventoryAuditDot_12d87_3914[data-tone="critical"] {
  background: rgba(242, 90, 90, 0.96);
}

._inventoryAuditDot_12d87_3914[data-tone="muted"] {
  background: rgba(148, 148, 160, 0.8);
}

._inventoryAuditLine_12d87_3938 {
  width: 1px;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.08);
  flex: 1 1 auto;
}

._inventoryAuditCard_12d87_3945 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

._inventoryAuditCardTop_12d87_3955 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

._inventoryAuditAction_12d87_3962 {
  font-size: 14px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
}

._inventoryAuditAt_12d87_3969 {
  font-size: 12px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.52);
  white-space: nowrap;
}

._inventoryAuditActor_12d87_3976 {
  font-size: 12px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.55);
}

._inventoryAuditDetail_12d87_3982 {
  font-size: 13px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.7);
}

._inventoryAuditEmptyState_12d87_3988 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

._inventoryAuditEmptyTitle_12d87_3998 {
  font-size: 14px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
}

._inventoryAuditEmptyBody_12d87_4005 {
  font-size: 13px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.62);
}

._overlayUploadDropzone_12d87_4011 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 16px;
  border-radius: 10px;
  border: 1px dashed rgb(78, 78, 82);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

._overlayUploadDropzoneIcon_12d87_4024 {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
}

._overlayUploadDropzoneTitle_12d87_4035 {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

._overlayUploadDropzoneMeta_12d87_4042 {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.58);
}

._overlayUploadStatus_12d87_4048 {
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.68);
}

._overlaySectionRowHeader_12d87_4055 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

._overlayFieldHeaderRow_12d87_4062 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

._overlayInlineActionButton_12d87_4069 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.2;
  cursor: pointer;
  padding: 0;
}

._overlayInlineActionButton_12d87_4069:hover {
  color: rgba(255, 255, 255, 0.95);
}

._overlayInlineGhostButton_12d87_4086 {
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  min-height: 26px;
  padding: 0 10px;
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
}

._overlayInlineGhostButton_12d87_4086:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
}

._overlayMediaGallery_12d87_4103 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

._overlayMediaGalleryRow_12d87_4110 {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 140ms ease;
}

._overlayMediaGalleryRow_12d87_4110:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

._overlayMediaGalleryOrder_12d87_4125 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}

._overlayMediaGalleryOrderLabel_12d87_4134 {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.055);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

._overlayMediaGalleryMoveButton_12d87_4147,
._overlayMediaGalleryDeleteButton_12d87_4148,
._overlayMediaGalleryPrimaryToggle_12d87_4149 {
  border: 0;
  border-radius: 6px;
  height: 26px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  transition: background-color 100ms ease;
}

._overlayMediaGalleryMoveButton_12d87_4147:hover,
._overlayMediaGalleryPrimaryToggle_12d87_4149:hover {
  background: rgba(255, 255, 255, 0.10);
}

._overlayMediaGalleryMoveButton_12d87_4147:disabled,
._overlayMediaGalleryDeleteButton_12d87_4148:disabled {
  opacity: 0.30;
  cursor: not-allowed;
}

._overlayMediaGalleryFields_12d87_4176 {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

._overlayMediaGalleryActions_12d87_4184 {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

._overlayMediaGalleryPrimaryToggleActive_12d87_4191 {
  background: rgba(194, 122, 58, 0.18);
  color: rgb(194, 122, 58);
}

._overlayMediaGalleryPrimaryToggleActive_12d87_4191:hover {
  background: rgba(194, 122, 58, 0.25);
}

._overlayMediaGalleryDeleteButton_12d87_4148 {
  width: 28px;
  padding: 0;
  color: rgba(255, 150, 150, 0.82);
}

._overlayMediaGalleryDeleteButton_12d87_4148:hover {
  background: rgba(255, 100, 100, 0.12);
  color: rgba(255, 150, 150, 0.95);
}

._overlayMediaGalleryHint_12d87_4211 {
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
}

._overlayMediaGalleryFileInput_12d87_4218 {
  display: none;
}

._overlayMediaGalleryFilePicker_12d87_4222 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  height: 32px;
  border-radius: 8px;
  border: 1px dashed rgba(120, 120, 128, 0.35);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._overlayMediaGalleryFilePicker_12d87_4222:hover {
  border-color: rgba(194, 122, 58, 0.45);
  background: rgba(194, 122, 58, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

._overlayChip_12d87_3722 {
  border: 1px solid rgba(120, 120, 128, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  height: 34px;
  font-size: 12px;
  cursor: pointer;
}

._overlayChipActive_12d87_4256 {
  border-color: rgba(120, 120, 128, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.96);
}

._overlayDraftInput_12d87_4262 {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(120, 120, 128, 0.35);
  background: rgba(255, 255, 255, 0.048);
  height: 38px;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  appearance: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: border-color 140ms ease, background-color 140ms ease;
}

._overlayDraftInput_12d87_4262:focus {
  border-color: rgba(160, 160, 168, 0.5);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.062);
}

._overlayDateTimeFields_12d87_4287 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

._overlayDateTimeFields_12d87_4287 ._overlayDraftInput_12d87_4262:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

._overlayDraftTextarea_12d87_4300 {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(120, 120, 128, 0.35);
  background: rgba(255, 255, 255, 0.048);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  padding: 10px 11px;
  resize: none;
  box-sizing: border-box;
  outline: none;
  min-height: 90px;
  line-height: 1.45;
  transition: border-color 140ms ease, background-color 140ms ease;
}

._overlayDraftTextarea_12d87_4300:focus {
  border-color: rgba(160, 160, 168, 0.5);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.062);
}

._overlayFieldHint_12d87_4322 {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

._overlayFieldMeta_12d87_4328 {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.56);
}

._overlayDraftHint_12d87_4334 {
  margin: -4px 0 2px;
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.01em;
}

._disabled_12d87_3217 {
  opacity: 0.5;
  pointer-events: none;
}

._overlayDraftSectionWrap_12d87_4347 {
  min-height: 0;
  height: 100%;
  justify-content: flex-start;
  gap: 12px;
}

._overlayStepBody_12d87_4354 {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

._overlayStepBody_12d87_4354::-webkit-scrollbar {
  display: none;
}

._overlayFormGrid_12d87_4371 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

._overlayFormGridThirds_12d87_4377 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

._overlayFieldFlex_12d87_3715 {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

._overlayFieldFlexFull_12d87_4388 {
  grid-column: 1 / -1;
}

._overlayFieldError_12d87_4392 {
  display: inline-flex;
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.52);
}

._overlayFormErrorBanner_12d87_4400 {
  margin: 0 0 16px 0;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(194, 122, 58, 0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

._overlayFormErrorBannerHeader_12d87_4408 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

._overlayFormErrorBannerCount_12d87_4415 {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

._overlayFormErrorBannerList_12d87_4421 {
  margin: 0;
  padding: 0 0 0 18px;
  list-style: disc;
}

._overlayFormErrorBannerItem_12d87_4427 {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

._overlayLineTable_12d87_4433 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

._overlayLineTable_12d87_4433::-webkit-scrollbar {
  display: none;
}

._overlayLineTableHeader_12d87_4449 {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 0 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: rgb(28, 28, 30);
}

._overlayLineTableRow_12d87_4461 {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 8px;
  border: 1px solid rgba(120, 120, 128, 0.28);
  border-radius: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  align-items: start;
}

._overlayLineCell_12d87_4472 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

._overlayStaticField_12d87_4479 {
  min-height: 38px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(120, 120, 128, 0.28);
  background: rgba(255, 255, 255, 0.038);
  padding: 9px 11px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.76);
}

._overlayLineFieldLabel_12d87_4492 {
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.1;
}

._overlayLineCellSplit_12d87_4500 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  min-width: 0;
}

._overlayLineTableTransfer_12d87_4507 ._overlayLineTableHeader_12d87_4449 {
  display: none;
}

._overlayLineTableTransfer_12d87_4507 ._overlayLineTableRow_12d87_4461 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 6px;
}

._overlayLineTableRowTransfer_12d87_4517 {
  align-items: start;
  padding: 10px;
}

._overlayTransferBatchPanel_12d87_4522 {
  border: 1px solid rgba(120, 120, 128, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  margin-top: -2px;
}

._overlayTransferBatchPanelHeader_12d87_4530 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 8px;
}

._overlayLineTableAssignment_12d87_4539 ._overlayLineTableHeader_12d87_4449,
._overlayLineTableAssignment_12d87_4539 ._overlayLineTableRow_12d87_4461 {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.86fr) minmax(0, 0.85fr) minmax(0, 1.2fr);
}

._overlayLineTableProduction_12d87_4544 ._overlayLineTableHeader_12d87_4449,
._overlayLineTableProduction_12d87_4544 ._overlayLineTableRow_12d87_4461 {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.86fr) minmax(0, 0.9fr) minmax(0, 1.15fr);
}

._overlayBatchToggle_12d87_4549 {
  border: 1px solid rgba(120, 120, 128, 0.3);
  background: rgba(120, 120, 128, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 7px 8px;
  font-size: 11px;
  cursor: pointer;
  text-align: left;
}

._overlayBatchList_12d87_4560 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

._overlayBatchRow_12d87_4566 {
  display: grid;
  grid-template-columns: 1fr 95px;
  gap: 6px;
  align-items: center;
}

._overlayBatchRow_12d87_4566 span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._overlayLineRowActions_12d87_4581 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

._overlayLineRemoveButton_12d87_4587 {
  border: 0;
  border-radius: 8px;
  min-height: 28px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 188, 188, 0.92);
  cursor: pointer;
}

._overlayLineRemoveButton_12d87_4587:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

._overlayLineAddButton_12d87_4605 {
  width: fit-content;
  border: 1px dashed rgba(120, 120, 128, 0.4);
  background: rgba(120, 120, 128, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  height: 30px;
  padding: 0 10px;
  font-size: 12px;
  cursor: pointer;
}

._overlayOutputPlanCard_12d87_4617 {
  border: 1px solid rgba(120, 120, 128, 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.024) 100%);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

._overlayDocumentsBlock_12d87_4627 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

._overlayDocumentLinkGrid_12d87_4633 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

._overlayDocumentLinkRow_12d87_4639 {
  border: 1px solid rgba(120, 120, 128, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
}

._overlayDocumentLinkRow_12d87_4639 span:last-child {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

._overlayDocumentLinkRowActive_12d87_4656 {
  border-color: rgba(59, 130, 246, 0.62);
  background: rgba(59, 130, 246, 0.16);
}

._overlayQuickCreateCard_12d87_4661 {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

._overlayCsvPanel_12d87_4672 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

._overlayCsvPanelCopy_12d87_4678 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

._overlayCsvPanelTitle_12d87_4684 {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

._overlayCsvPanelBody_12d87_4692 {
  margin: 0;
  max-width: 760px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

._overlayCsvPicker_12d87_4700 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 38px;
  width: fit-content;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(120, 120, 128, 0.34);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  cursor: pointer;
  overflow: hidden;
}

._overlayCsvInput_12d87_4717 {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

._overlayCsvFileName_12d87_4724 {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

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

  ._overlayFieldHeaderRow_12d87_4062 {
    align-items: flex-start;
    flex-direction: column;
  }

  ._overlayMediaGalleryRow_12d87_4110 {
    grid-template-columns: 1fr;
  }

  ._overlayMediaGalleryActions_12d87_4184 {
    justify-self: start;
  }

  ._overlayMediaGalleryFields_12d87_4176 {
    grid-template-columns: 1fr;
  }
}

._messageC1Body_12d87_4754 {
  -webkit-box-flex: 1;
  flex-grow: 1;
  overflow: hidden;
  min-height: 72px;
  padding: 16px;
  margin: 16px 16px 4px;
  min-block-size: 72px;
  border-radius: 5px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.65);
  background-color: rgb(28, 28, 30);
  display: flex;
  flex-direction: column;

  ._messageBodyHeader_12d87_1164 {
    ._messageBodyHeaderLeft_12d87_1175 {
      ._messageBodyHeaderLeftInfo_12d87_1181 {
        ._messageBodyHeaderLeftInfoTitle_12d87_1189 {
          font-size: 17px;

          &:hover {
            background-color: rgba(255, 255, 255, 0);
          }
        }
      }
    }
  }

  ._messageBodyContent_12d87_42 {
    display: flex;
    flex-direction: column;
    width: 100%;

    ._messageBodyContentHeaders_12d87_2230 {
      display: grid;
      width: 100%;
      align-self: center;
      min-height: 180px;
      height: fit-content;
      gap: 2px;
      grid-template-columns: 19.5% 19.5% 19.5% 19.5% 19.5%;
      grid-template-rows: 1fr;

      ._messageBodyContentHeadersItem_12d87_2259 {
        display: grid;
        position: relative;
        overflow: hidden;
        width: 100%;
        aspect-ratio: 1;
        background-color: rgba(255, 255, 255, 0.033);
        cursor: pointer;

        ._messageBodyContentHeadersItemTImage_12d87_4806 {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

        ._messageBodyContentHeadersItemTFileFallback_12d87_4812 {
          width: 100%;
          height: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 6px;
          padding: 12px;
          box-sizing: border-box;
          text-align: center;
        }

        ._messageBodyContentHeadersItemTFileExt_12d87_4825 {
          font-size: 18px;
          line-height: 1;
          font-weight: 600;
          letter-spacing: 0.1em;
          color: rgba(255, 255, 255, 0.9);
        }

        ._messageBodyContentHeadersItemTFileName_12d87_4833 {
          font-size: 11px;
          line-height: 1.3;
          color: rgba(255, 255, 255, 0.66);
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          word-break: break-word;
        }

        ._messageBodyContentHeadersItemDownload_12d87_4844 {
          position: absolute;
          right: 7.5px;
          bottom: 7.5px;
          width: 28px;
          height: 28px;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          border: none;
          border-radius: 999px;
          background: rgba(17, 24, 39, 0.72);
          color: rgba(255, 255, 255, 0.94);
          cursor: pointer;
        }

        ._messageBodyContentHeadersItemDownload_12d87_4844:hover {
          background: rgba(17, 24, 39, 0.88);
        }

        ._messageBodyContentHeadersItemTAMT_12d87_3171 {
          position: absolute;
          text-align: center;
          top: 7.5px;
          right: 12.5px;
          font-size: 19px;
          font-weight: 500;
          user-select: none;
          cursor: default;
        }

._messageBodyContentHeadersItemTDT_12d87_4875 {
          position: absolute;
          width: 100%;
          text-align: center;
          bottom: 7.5px;
          font-size: 13px;
          font-weight: 400;
          user-select: none;
          cursor: default;
        }

        ._messageBodyContentHeadersItemTPDI_12d87_4886 {
          padding: 3px;
          border-radius: 6px;
          position: absolute;
          top: 7.5px;
          left: 7.5px;
          background-color: rgb(0, 170, 0);
        }

        ._messageBodyContentHeadersItemTPDO_12d87_4895 {
          padding: 3px;
          border-radius: 6px;
          position: absolute;
          top: 7.5px;
          left: 7.5px;
          background-color: rgb(170, 0, 0);
        }

        ._messageBodyContentHeadersItemTPICON_12d87_3182 {
          align-self: center;
          justify-self: center;
          display: flex;
          flex-direction: column;
          align-items: center;
          font-size: 13px;
          text-align: center;
          padding-top: 30px;
          color: rgba(255, 255, 255, 0.65);

          svg {
            color: rgba(255, 255, 255, 0.65);
          }
        }

        ._messageBodyContentHeadersItemTADB_12d87_4920 {
          align-self: center;
          justify-self: center;
          background-color: rgba(255, 255, 255, 0.075);
          height: 45px;
          width: 45px;
          border-radius: 100px;
          display: flex;
          align-items: center;
          justify-content: center;
          user-select: none;
          cursor: pointer;
        }

        &:nth-child(even) {
          background-color: rgba(0, 0, 0, 0.075);
        }

      }

      ._addDocumentButton_12d87_4940 {
        background-color: transparent !important;
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1 / 1;
        min-height: 0;
        height: auto;
      }
    }

    ._messageBodyContentSeparator_12d87_2392 {
      margin: 25px 0 0px;
      font-weight: 400;
      display: grid;
      width: 100%;
      align-self: center;
      gap: 1px;
      height: 40px;
      grid-template-columns: 47.5% 17.5% 17.5% calc(17.5% - 3px);
      grid-template-rows: 1fr 1fr 1fr;

      span {
        padding: 5px 15px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        background-color: rgba(255, 255, 255, 0.075);
        text-align: center;

        &:first-of-type {
          border-top-left-radius: 5px;
          border-bottom-left-radius: 5px;
        }

        &:last-of-type {
          border-top-right-radius: 5px;
          border-bottom-right-radius: 5px;
        }
      }

    }

    ._messageBodyContentItems_12d87_2423 {
      font-weight: 400;
      display: grid;
      width: 100%;
      align-self: center;
      gap: 1px;
      grid-template-columns: 47.5% 17.5% 17.5% calc(17.5% - 3px);
      grid-template-rows: 1fr 1fr 1fr;

      ._messageBodyContentItem_12d87_42 {
        display: flex;
        padding: 0px 15px;
        margin: 7.5px 0;
        gap: 15px;

        ._messageBodyContentItemImage_12d87_2438 {
          width: 60px;
          height: 75px;
          flex-shrink: 0;
          border-radius: 5px;
          border: 1px solid rgba(255, 255, 255, 0.25);
          object-fit: cover;
        }

        ._messageBodyContentItemDetails_12d87_2447 {
          display: flex;
          flex-direction: column;

          ._messageBodyContentItemDetailsTitle_12d87_2451 {
            font-size: 14px;
            font-weight: 500;
            margin: 0;
          }

          ._messageBodyContentItemDetailsSubTitle_12d87_2457 {
            font-size: 12px;
            line-height: 15px;
            font-weight: 400;
            margin: 0;
            color: rgba(255, 255, 255, 0.5);
          }
        }

      }

      ._messageBodyContentItemTotals_12d87_47 {
        text-align: right;
        margin: 0 15px;
        font-size: 14px;
      }

      ._messageBodyContentItemTotalsAmount_12d87_48 {
        text-align: right;
        margin: 0 15px;
        font-size: 14px;
        font-weight: 500;
      }

    }

    ._messageBodyContentFooter_12d87_1586 {
      display: flex;
      flex-direction: column;
      flex: 1;
      margin-top: 6px;

      ._messageBodyContentFooterSub_12d87_1590 {
        display: flex;
        margin: 0 15px;

        ._messageBodyContentFooterSubTitle_12d87_2493 {
          flex: 1;
          text-align: right;
          font-size: 14px;
          color: rgba(255, 255, 255, 0.5);
        }

        ._messageBodyContentFooterSubSubTitle_12d87_2500 {
          width: 12%;
          text-align: right;
          font-size: 14px;
          font-weight: 500;
          color: rgba(255, 255, 255, 1);
        }
      }

      ._messageBodyContentFooterSubAlt_12d87_1590 {
        display: flex;
        margin: 6px 15px;

        ._messageBodyContentFooterSubAltTitle_12d87_2513 {
          flex: 1;
          text-align: left;
          font-size: 14px;
          color: rgba(255, 255, 255, 0.5);
        }
      }

      ._messageBodyContentFooterMain_12d87_2521 {
        display: flex;
        align-items: center;
        margin: 25px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        ._messageBodyContentFooterMainTitle_12d87_2528 {
          flex: 1;
          text-align: right;
          display: flex;
          justify-content: space-between;
          font-size: 12px;
          color: rgba(255, 255, 255, 0.5);
          font-weight: 500;
          padding: 15px 25px;
          height: 100%;
          border-right: 1px solid rgba(255, 255, 255, 0.1);

          span {
            color: rgba(255, 255, 255, 0.98);
            background-color: rgb(0, 170, 0);
            border-radius: 5px;
            padding: 0 15px;
          }
        }

        ._messageBodyContentFooterMainSubTitle_12d87_2541 {
          width: 12%;
          text-align: right;
          font-size: 18px;
          font-weight: 500;
          color: rgba(255, 255, 255, 1);
          margin: 0 15px;
        }
      }
    }

  }
}

/* Keep non-preview documents legible without relying on a file-type thumbnail. */
._messageBodyContentHeadersItemTFileFallback_12d87_4812 {
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 20px;
  box-sizing: border-box;
  text-align: center;
}

._messageBodyContentHeadersItemTFileName_12d87_4833 {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

._messageC2Body_12d87_5146 {
  -webkit-box-flex: 1;
  flex-grow: 1;
  overflow: hidden;
  min-height: 72px;
  padding: 16px;
  margin: 16px 16px 4px;
  min-block-size: 72px;
  border-radius: 5px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.65);
  background-color: rgb(28, 28, 30);
  display: flex;
  flex-direction: column;

  ._messageBodyHeader_12d87_1164 {
    ._messageBodyHeaderLeft_12d87_1175 {
      ._messageBodyHeaderLeftInfo_12d87_1181 {
        ._messageBodyHeaderLeftInfoTitle_12d87_1189 {
          font-size: 17px;

          &:hover {
            background-color: rgba(255, 255, 255, 0);
          }
        }
      }
    }
  }

  ._messageBodyContent_12d87_42 {
    display: flex;
    flex-direction: column;
    width: 100%;

    ._messageBodyContentHeaders_12d87_2230 {
      display: grid;
      width: 100%;
      align-self: center;
      min-height: 180px;
      height: fit-content;
      gap: 2px;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      grid-template-rows: 1fr;
      grid-auto-rows: 1fr;

      ._messageBodyContentHeadersItem_12d87_2259 {
        display: grid;
        position: relative;
        overflow: hidden;
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        min-height: 0;
        min-width: 0;
        box-sizing: border-box;
        background-color: rgba(255, 255, 255, 0.075);

        ._messageBodyContentHeadersItemTImage_12d87_4806 {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

        ._messageBodyContentHeadersItemTTypeImage_12d87_5208 {
          position: absolute;
          bottom: 0;
          right: 0;
          width: 45px;
          height: 45px;
        }

        ._messageBodyContentHeadersItemTADB_12d87_4920 {
          align-self: center;
          justify-self: center;
          background-color: rgba(255, 255, 255, 0.075);
          height: 45px;
          width: 45px;
          border-radius: 100px;
          display: flex;
          align-items: center;
          justify-content: center;
          user-select: none;
          cursor: pointer;
        }

        &:nth-child(even) {
          background-color: rgba(0, 0, 0, 0.075);
        }
      }

      ._addDocumentButton_12d87_4940 {
        background-color: transparent !important;
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1 / 1;
        min-height: 0;
        height: auto;
      }
    }

    ._messageBodyContentSeparator_12d87_2392 {
      margin: 25px 0 0px;
      font-weight: 400;
      display: grid;
      width: 100%;
      align-self: center;
      gap: 1px;
      height: 40px;
      grid-template-columns: 47.5% 17.5% 17.5% calc(17.5% - 3px);
      grid-template-rows: 1fr 1fr 1fr;

      span {
        padding: 5px 15px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        background-color: rgba(255, 255, 255, 0.075);
        text-align: center;

        &:first-of-type {
          border-top-left-radius: 5px;
          border-bottom-left-radius: 5px;
        }

        &:last-of-type {
          border-top-right-radius: 5px;
          border-bottom-right-radius: 5px;
        }
      }

    }

    ._messageBodyContentFooter_12d87_1586 {
      display: flex;
      flex-direction: column;
      flex: 1;
      margin-top: 6px;

      ._messageBodyContentFooterSub_12d87_1590 {
        display: flex;
        margin: 0 15px;

        ._messageBodyContentFooterSubTitle_12d87_2493 {
          flex: 1;
          text-align: right;
          font-size: 14px;
          color: rgba(255, 255, 255, 0.5);
        }

        ._messageBodyContentFooterSubSubTitle_12d87_2500 {
          width: 12%;
          text-align: right;
          font-size: 14px;
          font-weight: 500;
          color: rgba(255, 255, 255, 1);
        }
      }

      ._messageBodyContentFooterSubAlt_12d87_1590 {
        display: flex;
        margin: 6px 15px;

        ._messageBodyContentFooterSubAltTitle_12d87_2513 {
          flex: 1;
          text-align: left;
          font-size: 14px;
          color: rgba(255, 255, 255, 0.5);
        }
      }

      ._messageBodyContentFooterMain_12d87_2521 {
        display: flex;
        align-items: center;
        margin: 25px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        ._messageBodyContentFooterMainTitle_12d87_2528 {
          flex: 1;
          text-align: right;
          display: flex;
          justify-content: space-between;
          font-size: 12px;
          color: rgba(255, 255, 255, 0.5);
          font-weight: 500;
          padding: 15px 25px;
          height: 100%;
          border-right: 1px solid rgba(255, 255, 255, 0.1);

          span {
            color: rgba(255, 255, 255, 0.98);
            background-color: rgb(0, 170, 0);
            border-radius: 5px;
            padding: 0 15px;
          }
        }

        ._messageBodyContentFooterMainSubTitle_12d87_2541 {
          width: 12%;
          text-align: right;
          font-size: 18px;
          font-weight: 500;
          color: rgba(255, 255, 255, 1);
          margin: 0 15px;
        }
      }
    }

  }
}

  ._locationAssociatedInventoryBody_12d87_5356 {
  flex-grow: 0;
  min-height: 0;
  align-self: stretch;

  ._messageBodyContent_12d87_42 {
    flex: 0;
    height: auto;

    ._messageBodyContentHeaders_12d87_2230 {
      min-height: 0;
      height: auto;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      align-items: start;
      gap: 2px;
      grid-auto-rows: 1fr;

      ._messageBodyContentHeadersItem_12d87_2259 {
        min-height: 0;
        border-radius: 0;
        align-self: start;
        aspect-ratio: 1 / 1;
        height: auto;
        min-width: 0;
        box-sizing: border-box;
      }

      ._associatedInventoryTile_12d87_5383 {
        padding: 8px;
        display: flex;
        flex-direction: column;
        gap: 2px;
        justify-content: flex-start;
        overflow: hidden;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
      }

      ._associatedInventoryIconWrap_12d87_5395 {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
        color: rgba(174, 174, 178, 0.92);
        overflow: visible;
      }

      ._associatedInventoryTileIcon_12d87_5409 {
        width: 22px;
        height: 22px;
        display: block;
        overflow: visible;
      }

      ._associatedInventoryQtyTop_12d87_5416 {
        position: absolute;
        top: 6px;
        right: 6px;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        padding: 5px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        font-size: 12px;
        line-height: 1;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.92);
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      ._associatedInventorySingleImage_12d87_5436 {
        width: min(46%, 78px);
        height: auto;
        aspect-ratio: 1 / 1;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 8px;
        object-fit: cover;
        background: rgba(255, 255, 255, 0.06);
        margin: 24px auto 10px;
        flex-shrink: 0;
      }

      ._associatedInventoryMeta_12d87_5448 {
        display: flex;
        flex-direction: column;
        gap: 3px;
        min-width: 0;
        margin-top: auto;
        min-height: 56px;
        padding: 0 1px;
        overflow: hidden;
      }

      ._associatedInventoryName_12d87_5459,
      ._associatedInventoryDetail_12d87_5460,
      ._associatedInventoryCategory_12d87_5461 {
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      ._associatedInventoryName_12d87_5459 {
        font-size: 12px;
        line-height: 1.15;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.96);
      }

      ._associatedInventoryDetail_12d87_5460 {
        font-size: 10px;
        line-height: 1.15;
        color: rgba(255, 255, 255, 0.62);
      }

      ._associatedInventoryCategory_12d87_5461 {
        margin-top: 1px;
        min-width: 0;
        color: rgba(255, 255, 255, 0.8);
        font-size: 10px;
        line-height: 1.15;
      }
    }

    ._messageBodyContentFooter_12d87_1586 {
      flex: 0;
      margin-top: 6px;
    }
  }
}

._productLocationTile_12d87_5497 {
  position: relative;
  overflow: hidden;
}

._productLocationStockPill_12d87_5502 {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(33, 37, 43, 0.92);
  border: none;
  box-shadow: none;
  white-space: nowrap;
}

._productLocationStockPill_12d87_5502::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #69d58a;
  box-shadow: none;
  flex-shrink: 0;
}

._productLocationImage_12d87_5532 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

._productLocationOverlay_12d87_5539 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(12, 12, 13, 0.82) 55%, rgba(12, 12, 13, 0.92) 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

._productLocationName_12d87_5551 {
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.96);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._productLocationMeta_12d87_5560 {
  font-size: 11px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.76);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._messageTitle_12d87_5569 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #ffffff;
}

._messageViewLink_12d87_5576 {
  font-size: 12px;
  color: #cccccc;
  margin-bottom: 24px;
}

._messageViewLink_12d87_5576 a {
  color: #0e639c;
  text-decoration: underline;
}

._messageViewLink_12d87_5576 a:hover {
  color: #1177bb;
}

._warningContent_12d87_5591 {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5aa0 100%);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}

._hdfcHeader_12d87_5598 {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

._hdfcLogo_12d87_5603 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
}

._warningImage_12d87_5612 {
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

._warningText_12d87_5619 h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

._personImage_12d87_5627 {
  font-size: 80px;
  opacity: 0.8;
}

/* Scroll Area Styles */
._scrollRoot_12d87_5633 {
  flex: 1;
  overflow: hidden;
}

._scrollViewport_12d87_5638 {
  width: 100%;
  height: 100%;
}

/* Fix for Radix ScrollArea's table display wrapper */
._scrollViewport_12d87_5638>div[style*="display: table"] {
  display: block !important;
  min-width: unset !important;
  width: 100% !important;
  height: 100% !important;
}

._scrollbar_12d87_5651 {
  display: none;
  user-select: none;
  touch-action: none;
  padding: 2px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 160ms ease-out;
}

._scrollbar_12d87_5651:hover {
  background: rgba(255, 255, 255, 0.2);
}

._scrollbar_12d87_5651[data-orientation='vertical'] {
  width: 8px;
}

._scrollbar_12d87_5651[data-orientation='horizontal'] {
  flex-direction: column;
  height: 8px;
}

._scrollThumb_12d87_5673 {
  flex: 1;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
}

._scrollThumb_12d87_5673::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-width: 44px;
  min-height: 44px;
}

._scrollThumb_12d87_5673:hover {
  background: rgba(255, 255, 255, 0.5);
}

._contextWrapper_12d87_5696 {
  position: relative;
  border-radius: 8px;
}

._messageItem_12d87_406[data-state='open'] {
  outline: 2px solid rgba(194, 122, 58, 0.85);
  outline-offset: -2px;
}

._contextMenu_12d87_5706 {
  min-width: 250px;
  background-color: rgb(28, 28, 30);
  border: .2px solid rgba(116, 116, 128, 0.25);
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0px 10px 38px rgba(0, 0, 0, 0.3), 0px 10px 20px rgba(0, 0, 0, 0.2);
  color: white;
  z-index: 1000;
  animation: 0.2s cubic-bezier(0.32, 0.08, 0.24, 1) _cw-modal-pop_12d87_1;
}

/* Origin: Based on Radix side + align */
._contextMenu_12d87_5706[data-side="top"][data-align="start"],
._contextMenu_12d87_5706[data-side="bottom"][data-align="start"] {
  transform-origin: top left;
}

._contextMenu_12d87_5706[data-side="top"][data-align="center"],
._contextMenu_12d87_5706[data-side="bottom"][data-align="center"] {
  transform-origin: top center;
}

._contextMenu_12d87_5706[data-side="top"][data-align="end"],
._contextMenu_12d87_5706[data-side="bottom"][data-align="end"] {
  transform-origin: top right;
}

._contextMenu_12d87_5706[data-side="left"][data-align="start"],
._contextMenu_12d87_5706[data-side="right"][data-align="start"] {
  transform-origin: top left;
}

._contextMenu_12d87_5706[data-side="left"][data-align="center"],
._contextMenu_12d87_5706[data-side="right"][data-align="center"] {
  transform-origin: center left;
}

._contextMenu_12d87_5706[data-side="left"][data-align="end"],
._contextMenu_12d87_5706[data-side="right"][data-align="end"] {
  transform-origin: bottom left;
}

._contextItem_12d87_5749 {
  all: unset;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;

  svg {
    color: #C27A3A;
  }

  &:hover {
    background-color: #2c2c2e;
  }

  &[data-disabled] {
    font-size: 14.5px;
    font-weight: 500;

    &:hover {
      background-color: transparent;
    }
  }
}

@keyframes _cw-modal-pop_12d87_1 {
  0% {
    opacity: 0;
    transform: scale(0.62);
  }

  80% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

._separator_12d87_5795 {
  height: 1px;
  background-color: #3a3a3c;
  margin: 5px 10px;
}

._hoverCardContent_12d87_5801 {
  background-color: rgb(28, 28, 30);
  border: 1px solid rgba(116, 116, 128, 0.25);
  border-radius: 12px;
  box-shadow: 0px 10px 38px rgba(0, 0, 0, 0.3), 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding: 12px;
  width: 250px;
  z-index: 100;
  animation: _fadeIn_12d87_1 0.2s ease;
}

._hoverCardInner_12d87_5812 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

._hoverCardInner_12d87_5812 strong {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

._hoverCardInner_12d87_5812 p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

._hoverCardInner_12d87_5812 small {
  font-size: 12px;
  color: #888;
}

@keyframes _fadeIn_12d87_1 {
  from {
    opacity: 0;
    transform: translateY(-2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

._avatarHoverRoot_12d87_5847 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  overflow: hidden;
  user-select: none;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: var(--black-a3);
  flex-shrink: 0;
  flex-grow: 0;
}

._avatarHoverFallback_12d87_5862 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgb(166, 171, 183), rgb(134, 138, 147));
  color: rgb(224, 236, 248);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

._Content_12d87_5875 {
  border-radius: 6px;
  padding: 20px;
  width: 300px;
  background-color: rgb(33, 32, 32);
  box-shadow:
    hsl(206 22% 7% / 35%) 0px 10px 38px -10px,
    hsl(206 22% 7% / 20%) 0px 10px 20px -15px;
  animation-duration: 400ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;

  &[data-side="top"] {
    animation-name: _slideDownAndFade_12d87_1;
  }

  &[data-side="right"] {
    animation-name: _slideLeftAndFade_12d87_1;
  }

  &[data-side="bottom"] {
    animation-name: _slideUpAndFade_12d87_1;
  }

  &[data-side="left"] {
    animation-name: _slideRightAndFade_12d87_1;
  }
}

._Arrow_12d87_5904 {
  fill: rgba(116, 116, 128, 0.25);
}

._ImageTrigger_12d87_5908 {
  all: unset;
  cursor: pointer;
  border-radius: 100%;
  display: inline-block;

  &:focus {
    box-shadow: 0 0 0 2px white;
  }
}

._Image_12d87_5908 {
  display: block;
  border-radius: 100%;

  &.normal {
    width: 45px;
    height: 45px;
  }

  &.large {
    width: 60px;
    height: 60px;
  }
}

._Text_12d87_5934 {
  margin: 0;
  color: var(--mauve-12);
  font-size: 15px;
  line-height: 1.5;

  &.faded {
    color: var(--mauve-10);
  }

  &.bold {
    font-weight: 500;
  }
}

._confirmOverlay_12d87_5949 {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 5000;
}

._confirmDialog_12d87_5960 {
  width: min(420px, calc(100vw - 32px));
  border-radius: 10.5px;
  padding: 18px;
  background-color: rgb(28, 28, 30);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 15px 0px, rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
  color: rgba(255, 255, 255, 0.96);
}

._confirmHeader_12d87_5969 h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 500;
}

._confirmHeader_12d87_5969 p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

._confirmActions_12d87_5982 {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

._confirmPrimary_12d87_5989,
._confirmSecondary_12d87_5990 {
  border: none;
  border-radius: 8px;
  min-width: 100px;
  max-width: fit-content;
  height: auto;
  padding: 8px 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

._confirmPrimary_12d87_5989 {
  background: rgb(234, 52, 39);
  color: white;
}

._confirmPrimary_12d87_5989:hover {
  background: rgb(214, 44, 32);
}

._confirmSecondary_12d87_5990 {
  background: rgb(60, 60, 62);
  color: rgba(255, 255, 255, 0.9);
}

._confirmSecondary_12d87_5990:hover {
  background: rgb(72, 72, 74);
  color: rgba(255, 255, 255, 0.96);
}

._confirmHint_12d87_6026 {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
}

@keyframes _slideUpAndFade_12d87_1 {
  0% {
    opacity: 0;
    transform: translateY(2px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes _slideRightAndFade_12d87_1 {
  0% {
    opacity: 0;
    transform: translateX(-2px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes _slideDownAndFade_12d87_1 {
  0% {
    opacity: 0;
    transform: translateY(-2px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes _slideLeftAndFade_12d87_1 {
  0% {
    opacity: 0;
    transform: translateX(2px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-color-scheme: light) {
  ._emailClient_12d87_5 {
    background: #fff;
    color: #1f2937;
  }

  ._sidebar_12d87_55 {
    background: linear-gradient(180deg, rgba(251, 252, 255, 0.98), rgba(243, 246, 251, 0.96));
    border-right: 1px solid rgb(209, 209, 214);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.7);
  }

  ._messageList_12d87_223 {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.98));
    border-right: 1px solid rgba(210, 218, 228, 0.95);
  }

  ._messageContainer_12d87_551,
  ._messageContentHeader_12d87_805 {
    background: #ffffff;
    border-bottom: 1px solid transparent;
  }

  ._messageContentHeader_12d87_805._overlapping_12d87_813 {
    border-color: rgba(210, 218, 228, 0.5);
    background: rgba(247, 249, 252, 0.98);
  }

  ._sidebarHeader_12d87_70 h2,
  ._foldersHeader_12d87_172 h3,
  ._headerTop_12d87_236 h2,
  ._sender_12d87_692,
  ._subject_12d87_664,
  ._messageBodyHeader_12d87_1164 ._messageBodyHeaderLeft_12d87_1175 ._messageBodyHeaderLeftInfo_12d87_1181 ._messageBodyHeaderLeftInfoTitle_12d87_1189,
  ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._messageBodyContentHeadersSubTitle_12d87_2249,
  ._messageBodyContentFooterMainTitle_12d87_2528,
  ._messageBodyContentFooterMainSubTitle_12d87_2541,
  ._Text_12d87_5934 {
    color: #1f2937;
  }

  ._mailboxName_12d87_145 {
    color: #243043;
  }

  ._count_12d87_158,
  ._headerInfo_12d87_317,
  ._preview_12d87_668,
  ._time_12d87_705,
  ._messageBodyHeader_12d87_1164 ._messageBodyHeaderRight_12d87_1243 ._messageBodyHeaderRightDate_12d87_1248,
  ._messageBodyHeader_12d87_1164 ._messageBodyHeaderLeft_12d87_1175 ._messageBodyHeaderLeftInfo_12d87_1181 ._messageBodyHeaderLeftInfoSubtitle_12d87_1210 span,
  ._messageBodyHeaderLeftInfoSubtitle_12d87_1210,
  ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._messageBodyContentHeadersTitle_12d87_2241,
  ._messageBodyContentSeparator_12d87_2392 span,
  ._messageBodyContentFooterSubTitle_12d87_2493,
  ._messageBodyContentFooterSubSubTitle_12d87_2500,
  ._messageBodyContentFooterSubAltTitle_12d87_2513,
  ._Text_12d87_5934.faded {
    color: rgba(71, 85, 105, 0.88) !important;
  }

  ._mailboxItem_12d87_101:hover,
  ._messageBodyHeader_12d87_1164 ._messageBodyHeaderLeft_12d87_1175 ._messageBodyHeaderLeftInfo_12d87_1181 ._messageBodyHeaderLeftInfoTitle_12d87_1189:hover,
  ._messageBodyHeader_12d87_1164 ._messageBodyHeaderLeft_12d87_1175 ._messageBodyHeaderLeftInfo_12d87_1181 ._messageBodyHeaderLeftInfoSubtitle_12d87_1210 span:hover,
  ._messageBodyHeader_12d87_1164 ._messageBodyHeaderRight_12d87_1243 ._messageDetailsButton_12d87_1269:hover,
  ._contextItem_12d87_5749:hover {
    background-color: rgba(200, 200, 200, 0.35);
  }

  ._mailboxItem_12d87_101._active_12d87_121 {
    background: rgba(120, 120, 128, 0.1);
    color: rgba(0, 0, 0, 0.88);

    &:hover {
      background: rgba(120, 120, 128, 0.2);
    }
  }

  ._iconButton_12d87_301,
  ._messageBodyHeader_12d87_1164 ._messageBodyHeaderRight_12d87_1243 ._messageDetailsButton_12d87_1269,
  ._detailsButton_12d87_1076,
  ._messageViewLink_12d87_5576 a,
  ._contextItem_12d87_5749 svg,
  ._mailboxItem_12d87_101 svg {
    color: #C27A3A;
  }

  ._iconButton_12d87_301:hover {
    background-color: rgba(200, 200, 200, 0.35);
  }

  ._searchIcon_12d87_349,
  ._searchClearIcon_12d87_355 {
    color: #6b7280;
  }

  ._searchClearIcon_12d87_355:hover {
    background-color: rgba(148, 163, 184, 0.18);
  }

  ._searchInput_12d87_369 {
    background: rgba(248, 250, 252, 0.92);
    border: 1px solid rgb(209, 209, 214);
    color: #1f2937;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  ._searchInput_12d87_369::placeholder {
    color: #94a3b8;
  }

  ._searchInput_12d87_369:focus {
    outline: 3px solid rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.28);
    caret-color: rgba(255, 255, 255, 0.6);
  }

  ._topHits_12d87_390,
  ._messageBody_12d87_42,
  ._messageC1Body_12d87_4754,
  ._messageC2Body_12d87_5146,
  ._messageC3Body_12d87_6200 {
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
  }

  ._messageBody_12d87_42 {
    background: #ffffff;
  }

  ._topHits_12d87_390 ._topHitsLabel_12d87_397 {
    color: #1f2937;
  }

  ._messageItem_12d87_406._selected_12d87_410,
  ._topHits_12d87_390 ._messageItem_12d87_406._selected_12d87_410 {
    background: rgba(120, 120, 128, 0.15);
  }

  ._messageContent_12d87_447:not(:focus-within) {
    border-bottom-color: rgba(226, 232, 240, 1);
  }

  ._actions_12d87_448 {
    background-color: rgba(51, 54, 56, 0.5);
    color: #ffffff;
  }

  ._unreadIndicator_12d87_788,
  ._unreadDot_12d87_333 {
    background-color: #C27A3A;
  }

  ._avatarFallback_12d87_555,
  ._avatarHoverFallback_12d87_5862 {
    background: linear-gradient(rgb(188, 198, 214), rgb(148, 163, 184));
    color: #f8fafc;
  }

._lightIcon_12d87_6238 {
  display: flex;
}

._darkIcon_12d87_6242 {
  display: none;
}

  ._lightModeIconBorder_12d87_6246 {
    border: 1px solid rgba(80, 85, 96, 0.15) !important;
    box-shadow: 0 0 7.5px 0.33px rgba(80, 85, 96, 0.1);
  }

  ._messageBodyHeader_12d87_1164 {
    border-bottom-color: rgba(226, 232, 240, 0.95);
  }

  ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._messageBodyContentHeadersItemL_12d87_2259,
  ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._messageBodyContentHeadersItemS_12d87_2327,
  ._messageBodyContentSeparator_12d87_2392 span,
  ._messageBodyContentFooterMain_12d87_2521,
  ._messageBodyContentFooterSub_12d87_1590,
  ._messageBodyContentFooterSubAlt_12d87_1590,
  ._gatepassDetailCard_12d87_2587,
  ._gatepassDetailEmpty_12d87_2676 {
    background-color: rgba(241, 241, 241, 1) !important;
    color: #1f2937;
  }

  ._messageBodyContentFooterSubAlt_12d87_1590,
  ._messageBodyContentFooterSubTitle_12d87_2493,
  ._messageBodyContentFooterSubAltTitle_12d87_2513,
  ._gatepassDetailSectionLabel_12d87_2567,
  ._gatepassDetailSectionCount_12d87_2575,
  ._gatepassDetailCode_12d87_2606,
  ._gatepassDetailType_12d87_2627,
  ._gatepassDetailMeta_12d87_2633,
  ._gatepassDetailFooter_12d87_2641,
  ._gatepassDetailNotes_12d87_2651 {
    color: rgba(71, 85, 105, 0.84) !important;
    background-color: transparent !important;
  }

  ._locationHeatmapMap_12d87_2118 ._locationHeatmapLabel_12d87_1330 {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(80, 85, 96, 0.14);
    color: #1f2937;
  }

  ._locationMapImageDark_12d87_2187 {
    display: none;
  }

  ._locationMapImageLight_12d87_2191 {
    display: block;
  }

  ._locationHeatmapMap_12d87_2118 ._locationHeatmapMeta_12d87_2152 {
    background: rgba(255, 255, 255, 0.86);
    color: rgba(51, 65, 85, 0.9) !important;
  }

  ._productHeroSummary_12d87_6300,
  ._productMetaCard_12d87_6301,
  ._productStockCard_12d87_6302 {
    background-color: rgba(241, 241, 241, 1);
  }

  ._productHeroMetric_12d87_6306,
  ._productMetaValue_12d87_6307,
  ._productStockLocation_12d87_6308,
  ._productStockQty_12d87_6309 {
    color: #1f2937;
  }

  ._productHeroSub_12d87_6313,
  ._productStockType_12d87_6314 {
    color: rgba(71, 85, 105, 0.82);
  }

  ._productHeroStatus_12d87_6318 {
    color: #9A5F2B;
    background: rgba(194, 122, 58, 0.12);
  }

  ._productStockRow_12d87_6323 {
    background: rgba(249, 249, 249, 1);
  }

  ._productLocationStockPill_12d87_5502 {
    color: #1f2937;
    background: rgba(247, 247, 248, 0.98);
    border: none;
    box-shadow: none;
  }

  ._productLocationStockPill_12d87_5502::before {
    background: #c27a3a;
    box-shadow: none;
  }

  ._locationCapacityBadge_12d87_1344 {
    background: rgba(80, 85, 96, 0.08);
    color: rgba(31, 41, 55, 0.86);
  }

  ._locationCapacityLabel_12d87_1378,
  ._locationCapacityUtilization_12d87_1385 {
    color: #1f2937;
  }

  ._locationCapacityMeter_12d87_1392 {
    background: rgba(80, 85, 96, 0.12);
  }

  ._locationCapacityMeta_12d87_1419 {
    color: rgba(71, 85, 105, 0.86);
  }

  ._messageC1Body_12d87_4754 ._messageBodyContent_12d87_42 ._messageBodyContentSeparator_12d87_2392 span,
  ._messageC2Body_12d87_5146 ._messageBodyContent_12d87_42 ._messageBodyContentSeparator_12d87_2392 span,
  ._messageC3Body_12d87_6200 ._messageBodyContent_12d87_42 ._messageBodyContentSeparator_12d87_2392 span {
    color: rgba(71, 85, 105, 0.82) !important;
    background-color: transparent !important;
    border-top: 1px solid rgba(226, 232, 240, 0.96);
    border-bottom: 1px solid rgba(226, 232, 240, 0.96);
  }

  ._messageBodyContentFooterMain_12d87_2521,
  ._messageBodyContentItemDetailsTitle_12d87_2451,
  ._messageBodyContentItemTotalsAmount_12d87_48,
  ._messageBodyContentFooterSubSubTitle_12d87_2500,
  ._messageBodyContentFooterMainTitle_12d87_2528,
  ._messageBodyContentFooterMainSubTitle_12d87_2541,
  ._gatepassDetailSectionLabel_12d87_2567,
  ._gatepassDetailSectionCount_12d87_2575,
  ._gatepassDetailCode_12d87_2606,
  ._gatepassDetailType_12d87_2627,
  ._gatepassDetailMeta_12d87_2633,
  ._gatepassDetailFooter_12d87_2641,
  ._gatepassDetailNotes_12d87_2651 {
    color: #1f2937 !important;
    background-color: transparent !important;
  }

  ._gatepassPrintBtn_12d87_2657 {
    border-color: rgba(0, 0, 0, 0.15) !important;
    background: rgba(0, 0, 0, 0.05) !important;
    color: #374151 !important;
  }
  ._gatepassPrintBtn_12d87_2657:hover {
    background: rgba(0, 0, 0, 0.1) !important;
  }

  ._messageBodyContentItemImage_12d87_2438 {
    border: 1px solid rgba(80, 85, 96, 0.2) !important;
  }

  ._messageC1Body_12d87_4754 ._messageBodyContentFooter_12d87_1586 ._messageBodyContentFooterMain_12d87_2521 ._messageBodyContentFooterMainTitle_12d87_2528 span,
  ._messageC2Body_12d87_5146 ._messageBodyContentFooter_12d87_1586 ._messageBodyContentFooterMain_12d87_2521 ._messageBodyContentFooterMainTitle_12d87_2528 span,
  ._messageC3Body_12d87_6200 ._messageBodyContentFooter_12d87_1586 ._messageBodyContentFooterMain_12d87_2521 ._messageBodyContentFooterMainTitle_12d87_2528 span {
    color: #9A5F2B !important;
    background-color: transparent !important;
    padding: 0;
  }

  ._messageBodyContentItemDetailsSubTitle_12d87_2457 {
    color: rgba(71, 85, 105, 0.84) !important;
    background: transparent !important;
  }

  ._messageBodyContentFooterSub_12d87_1590,
  ._messageBodyContentFooterSubTitle_12d87_2493 {
    color: #1f2937 !important;
    background: transparent !important;
  }

  ._messageBodyContentFooterMain_12d87_2521 {
    border-top: 1px solid rgba(226, 232, 240, 0.95) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95) !important;
  }

  ._gatepassDetailCard_12d87_2587 {
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
  }

  ._gatepassDetailStatus_12d87_2616 {
    color: #9A5F2B !important;
    background: rgba(194, 122, 58, 0.12) !important;
  }

  ._gatepassDetailEmpty_12d87_2676 {
    border: 1px dashed rgba(226, 232, 240, 0.95) !important;
  }

  ._messageBodyContentFooterMain_12d87_2521 ._messageBodyContentFooterMainTitle_12d87_2528 {
    border-right: 1px solid rgba(226, 232, 240, 0.95) !important;
  }

  ._messageC1Body_12d87_4754 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._messageBodyContentHeadersItem_12d87_2259,
  ._messageC2Body_12d87_5146 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._messageBodyContentHeadersItem_12d87_2259 {
    background-color: rgba(241, 241, 241, 1);
  }

  ._messageC1Body_12d87_4754 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._messageBodyContentHeadersItem_12d87_2259:nth-child(even),
  ._messageC2Body_12d87_5146 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._messageBodyContentHeadersItem_12d87_2259:nth-child(even) {
    background-color: rgba(249, 249, 249, 1);
  }

  ._messageC2Body_12d87_5146 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._associatedInventoryTile_12d87_5383 {
    background-color: rgba(241, 241, 241, 1);
  }

  ._messageC2Body_12d87_5146 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._associatedInventoryTile_12d87_5383:nth-child(even) {
    background-color: rgba(249, 249, 249, 1);
  }

  ._messageC2Body_12d87_5146 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._associatedInventorySingleImage_12d87_5436 {
    border-color: rgba(80, 85, 96, 0.16);
  }

  ._messageC2Body_12d87_5146 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._associatedInventoryName_12d87_5459,
  ._messageC2Body_12d87_5146 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._associatedInventoryQtyTop_12d87_5416 {
    color: #1f2937;
  }

  ._messageC2Body_12d87_5146 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._associatedInventoryQtyTop_12d87_5416 {
    background: rgba(80, 85, 96, 0.08);
  }

  ._messageC2Body_12d87_5146 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._associatedInventoryDetail_12d87_5460 {
    color: rgba(71, 85, 105, 0.82);
  }

  ._messageC2Body_12d87_5146 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._associatedInventoryCategory_12d87_5461 {
    color: rgba(51, 65, 85, 0.88);
  }

  ._messageC2Body_12d87_5146 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._associatedInventoryTile_12d87_5383:nth-child(1) {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }

  ._messageC2Body_12d87_5146 ._messageBodyContent_12d87_42 ._messageBodyContentHeaders_12d87_2230 ._associatedInventoryTile_12d87_5383:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  ._PaymentOverlay_12d87_2995 {
    background-color: rgba(245, 245, 247, 0.85);
  }

  ._PaymentOverlayContent_12d87_3003 {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 15px 0 rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(205, 208, 213, 0.96);
  }

  ._PaymentOverlayContent_12d87_3003 ._PaymentOverlayContentSidebar_12d87_3023 {
    background: rgba(248, 250, 252, 0.95);
    border-right: 1px solid rgba(218, 222, 228, 0.96);
  }

  ._PaymentOverlayContent_12d87_3003 ._PaymentOverlayCloseIcon_12d87_3032 {
    color: #3e454f !important;
    background-color: rgba(248, 250, 252, 0.95);

    &:hover {
      background-color: rgba(120, 120, 128, 0.2);
    }
  }

  ._PaymentOverlayContent_12d87_3003 ._PaymentOverlayContentMain_12d87_3049,
  ._PaymentOverlayContent_12d87_3003 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainTitle_12d87_3057,
  ._PaymentOverlayContent_12d87_3003 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionTitle_12d87_3073,
  ._PaymentOverlayContent_12d87_3003 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionValue_12d87_3080,
  ._directoryEditPane_12d87_3510 ._PaymentOverlayContentMain_12d87_3049,
  ._directoryEditPane_12d87_3510 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainTitle_12d87_3057,
  ._directoryEditPane_12d87_3510 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionTitle_12d87_3073,
  ._directoryEditPane_12d87_3510 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionValue_12d87_3080,
  ._overlayInsightValue_12d87_3556,
  ._overlayCalloutTitle_12d87_3614,
  ._overlayStaticField_12d87_4479 {
    color: #1f2937 !important;
    border-color: rgba(189, 193, 198, 0.76) !important;
  }

  ._PaymentOverlayContent_12d87_3003 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionBody_12d87_3143,
  ._directoryEditPane_12d87_3510 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionBody_12d87_3143 {
    color: rgba(71, 85, 105, 0.88) !important;
  }

  ._overlayInsightCard_12d87_3538,
  ._overlayCallout_12d87_3569,
  ._overlayStaticField_12d87_4479 {
    background: rgba(248, 250, 252, 0.9) !important;
    border-color: rgba(218, 222, 228, 0.96) !important;
  }

  ._overlayInsightLabel_12d87_3548,
  ._overlayInsightCaption_12d87_3563,
  ._overlayCalloutBody_12d87_3621,
  ._overlayCalloutFooter_12d87_3622,
  ._overlayFieldMeta_12d87_4328 {
    color: rgba(71, 85, 105, 0.82) !important;
  }

  ._overlayCalloutLabel_12d87_3600 {
    background: rgba(15, 23, 42, 0.06) !important;
    color: rgba(51, 65, 85, 0.82) !important;
  }

  ._PaymentOverlayContent_12d87_3003 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionTable_12d87_3155 ._messageBodyContentHeadersItem_12d87_2259,
  ._PaymentOverlayContent_12d87_3003 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionTable1_12d87_3201 ._messageBodyContentHeadersItem_12d87_2259,
  ._directoryEditPane_12d87_3510 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionTable_12d87_3155 ._messageBodyContentHeadersItem_12d87_2259,
  ._directoryEditPane_12d87_3510 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionTable1_12d87_3201 ._messageBodyContentHeadersItem_12d87_2259 {
    background-color: rgba(241, 241, 241, 0.98) !important;
    border-color: rgba(189, 193, 198, 0.76) !important;
  }

  ._messageBodyContentHeadersItemTPICON_12d87_3182 {
    color: rgba(71, 85, 105, 0.85) !important;
  }

  ._messageBodyContentHeadersItemTPICON_12d87_3182 svg {
    color: rgba(71, 85, 105, 0.85) !important;
  }

  ._PaymentOverlayContent_12d87_3003 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionBtnPrimary_12d87_3103,
  ._directoryEditPane_12d87_3510 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionBtnPrimary_12d87_3103 {
    background: #000 !important;
    color: #fff !important;
  }

  ._overlayButtonRow_12d87_3420 ._PaymentOverlayContentMainSectionBtnPrimary_12d87_3103 {
    background: #000 !important;
    color: #fff !important;
    border-radius: 8px !important;
  }

  ._overlayBtnPrimaryPill_12d87_3470 {
    background-color: #000;
    color: #fff;
  }

  ._PaymentOverlayContent_12d87_3003 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionBtnSecondary_12d87_3123,
  ._directoryEditPane_12d87_3510 ._PaymentOverlayContentMain_12d87_3049 ._PaymentOverlayContentMainSectionBtnSecondary_12d87_3123 {
    background: rgba(231, 231, 231, 0.98) !important;
    color: #334155;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12) !important;
  }

  ._overlayButtonRow_12d87_3420 ._PaymentOverlayContentMainSectionBtnSecondary_12d87_3123 {
    background: rgba(231, 231, 231, 0.98) !important;
    color: #334155 !important;
    border-radius: 8px !important;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12) !important;
  }

  ._overlayBtnSecondaryPill_12d87_3489 {
    background-color: rgba(231, 231, 231, 0.98);
    color: #334155;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  }

  ._locationShareButton_12d87_1939 {
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.7);
  }

  ._locationShareButton_12d87_1939:hover {
    background: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.88);
  }

  ._overlaySidebarItem_12d87_3280 {
    color: #1f2937;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(189, 193, 198, 0.5);
  }

  ._overlaySidebarItemActive_12d87_3303 {
    background: rgba(215, 230, 255, 0.95);
    border-color: rgba(120, 153, 210, 0.68);
  }

  ._overlaySidebarLabel_12d87_3315 {
    color: rgba(71, 85, 105, 0.74);
  }

  ._overlaySidebarCard_12d87_3321 {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(189, 193, 198, 0.65);
  }

  ._overlaySidebarTitle_12d87_3331 {
    color: #0f172a;
  }

  ._overlaySidebarMeta_12d87_3338 {
    color: #475569;
  }

  ._overlaySidebarPill_12d87_3343 {
    color: #334155;
    background: rgba(148, 163, 184, 0.22);
  }

  ._overlayTitleTab_12d87_3352,
  ._overlayTitleCurrent_12d87_3361 {
    color: #0f172a;
  }

  ._overlayTitleDivider_12d87_3357 {
    color: rgba(71, 85, 105, 0.64);
  }

  ._overlayInventorySearchList_12d87_3372 {
    border-color: rgba(189, 193, 198, 0.76);
  }

  ._overlayInventorySearchRow_12d87_3379 {
    border-color: rgba(189, 193, 198, 0.55);
  }

  ._overlayInventorySearchRow_12d87_3379:hover {
    background: rgba(148, 163, 184, 0.15);
  }

  ._overlayInventorySearchRowSelected_12d87_3396,
  ._overlayInventorySearchRowSelected_12d87_3396:hover {
    background: rgba(147, 197, 253, 0.35);
  }

  ._overlayInventorySearchRowMain_12d87_3401 span:first-child {
    color: #0f172a;
  }

  ._overlayInventorySearchRowMain_12d87_3401 span:last-child,
  ._overlayInventorySearchRowRight_12d87_3402 span {
    color: #475569;
  }

  ._overlaySectionAction_12d87_3693 {
    color: #334155;
    background: rgba(148, 163, 184, 0.16);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.25);
  }

  ._overlaySectionAction_12d87_3693:hover {
    color: #0f172a;
    background: rgba(148, 163, 184, 0.24);
  }

  ._overlayChip_12d87_3722 {
    color: #334155;
    border-color: rgba(189, 193, 198, 0.86);
    background: rgba(255, 255, 255, 0.98);
  }

  ._overlayChipActive_12d87_4256 {
    color: #0f172a;
    border-color: rgba(59, 130, 246, 0.62);
    background: rgba(191, 219, 254, 0.65);
  }

  ._overlayDraftInput_12d87_4262,
  ._overlayDraftTextarea_12d87_4300 {
    color: #0f172a;
    border-color: rgba(189, 193, 198, 0.86);
    background: rgba(255, 255, 255, 0.98);
  }

  ._overlayFieldError_12d87_4392 {
    color: #dc2626;
  }

  ._overlayLineTableHeader_12d87_4449 {
    color: rgba(71, 85, 105, 0.72);
  }

  ._overlayLineFieldLabel_12d87_4492 {
    color: rgba(71, 85, 105, 0.76);
  }

  ._overlayLineTableRow_12d87_4461,
  ._overlayOutputPlanCard_12d87_4617,
  ._overlayQuickCreateCard_12d87_4661,
  ._overlayDocumentLinkRow_12d87_4639 {
    border-color: rgba(189, 193, 198, 0.8);
    background: rgba(255, 255, 255, 0.98);
    color: #0f172a;
  }

  ._overlayDocumentLinkRow_12d87_4639 span:last-child,
  ._overlayBatchRow_12d87_4566 span {
    color: rgba(71, 85, 105, 0.82);
  }

  ._overlayTransferBatchPanel_12d87_4522 {
    border-color: rgba(189, 193, 198, 0.8);
    background: rgba(255, 255, 255, 0.98);
  }

  ._overlayTransferBatchPanelHeader_12d87_4530 {
    color: rgba(71, 85, 105, 0.76);
  }

  ._overlayDocumentLinkRowActive_12d87_4656 {
    border-color: rgba(59, 130, 246, 0.62);
    background: rgba(191, 219, 254, 0.65);
  }

  ._overlayBatchToggle_12d87_4549,
  ._overlayLineAddButton_12d87_4605 {
    color: #334155;
    border-color: rgba(189, 193, 198, 0.8);
    background: rgba(241, 245, 249, 0.92);
  }

  ._PaymentOverlayContentMainSectionDocs_12d87_3729 ._overlayDocumentMatchCard_12d87_3737 {
    border-color: rgba(189, 193, 198, 0.8);
    background: rgba(255, 255, 255, 0.98);
  }

  ._PaymentOverlayContentMainSectionDocs_12d87_3729 ._overlayDocumentPreviewWrap_12d87_3748 {
    background: rgba(241, 245, 249, 0.9);
  }

  ._PaymentOverlayContentMainSectionDocs_12d87_3729 ._overlayDocumentName_12d87_3816 {
    color: #0f172a;
  }

  ._PaymentOverlayContentMainSectionDocs_12d87_3729 ._overlayDocumentType_12d87_3827,
  ._PaymentOverlayContentMainSectionDocs_12d87_3729 ._overlayDocumentDate_12d87_3833 {
    color: #475569;
  }

  ._overlayDocumentPreviewExt_12d87_3783,
  ._messageBodyContentHeadersItemTFileExt_12d87_4825,
  ._artifactViewerFileExtension_12d87_2945 {
    color: #0f172a;
  }

  ._overlayDocumentPreviewName_12d87_3791,
  ._messageBodyContentHeadersItemTFileName_12d87_4833,
  ._artifactViewerFileName_12d87_2953 {
    color: #475569;
  }

  ._artifactViewerFileFallback_12d87_2928 {
    border-color: rgba(189, 193, 198, 0.8);
    background: rgba(255, 255, 255, 0.98);
  }

  ._overlayUploadDropzone_12d87_4011 {
    border-color: rgba(189, 193, 198, 0.85);
    background: rgba(248, 250, 252, 0.95);
  }

  ._overlayUploadDropzoneIcon_12d87_4024 {
    background: rgba(148, 163, 184, 0.2);
    color: #334155;
  }

  ._overlayUploadDropzoneTitle_12d87_4035 {
    color: #0f172a;
  }

  ._overlayUploadDropzoneMeta_12d87_4042 {
    color: #64748b;
  }

  ._productionMetricCard_12d87_1549 {
    border-color: rgba(189, 193, 198, 0.8);
    background: rgba(255, 255, 255, 0.98);
  }

  ._productionMetricValue_12d87_1560 {
    color: #0f172a;
  }

  ._productionHeatmapValue_12d87_1470 {
    color: #0f172a;
  }

  ._productionHeatmapMeta_12d87_1478 {
    color: rgba(71, 85, 105, 0.8);
  }

  ._productionStreamPill_12d87_1524 {
    color: rgba(30, 41, 59, 0.95);
  }

  ._productionStreamPillMaterial_12d87_1537 {
    background: rgba(147, 197, 253, 0.5);
  }

  ._productionStreamPillProduct_12d87_1541 {
    background: rgba(134, 239, 172, 0.48);
  }

  ._productionStreamPillLoss_12d87_1545 {
    background: rgba(253, 186, 116, 0.52);
  }

  ._productionSectionLabel_12d87_1567 {
    color: rgba(71, 85, 105, 0.76);
  }

  ._scrollbar_12d87_5651 {
    background: rgba(203, 213, 225, 0.32);
  }

  ._scrollbar_12d87_5651:hover {
    background: rgba(148, 163, 184, 0.36);
  }

  ._scrollThumb_12d87_5673 {
    background: rgba(148, 163, 184, 0.72);
  }

  ._scrollThumb_12d87_5673:hover {
    background: rgba(100, 116, 139, 0.84);
  }

  ._contextMenu_12d87_5706,
  ._hoverCardContent_12d87_5801,
  ._Content_12d87_5875 {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
    color: #1f2937;
  }

  ._contextItem_12d87_5749[data-disabled] {
    color: #111827;
  }

  ._separator_12d87_5795 {
    background-color: rgba(226, 232, 240, 0.95);
  }

  ._Arrow_12d87_5904 {
    fill: rgba(226, 232, 240, 0.95);
  }

  ._ImageTrigger_12d87_5908:focus {
    box-shadow: 0 0 0 2px rgba(194, 122, 58, 0.35);
  }

  ._confirmDialog_12d87_5960 {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 15px 0 rgba(15, 23, 42, 0.18);
    color: #111827;
  }

  ._confirmHeader_12d87_5969 p,
  ._confirmHint_12d87_6026 {
    color: rgba(71, 85, 105, 0.88);
  }

  ._confirmSecondary_12d87_5990 {
    background: rgba(231, 231, 231, 0.98);
    color: #334155;
  }

  ._confirmSecondary_12d87_5990:hover {
    background: rgba(220, 220, 220, 0.98);
    color: #1f2937;
  }

  ._confirmPrimary_12d87_5989 {
    background: rgb(234, 52, 39);
    color: #fff;
  }

  ._confirmPrimary_12d87_5989:hover {
    background: rgb(214, 44, 32);
  }
}
._overlayErrorBanner_12d87_6919 { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; margin: 16px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); } ._overlayErrorBannerContent_12d87_6919 { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.85); } ._overlayErrorBannerRetry_12d87_6919 { padding: 6px 14px; border-radius: 6px; border: none; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 600; cursor: pointer; transition: background 0.15s; } ._overlayErrorBannerRetry_12d87_6919:hover { background: rgba(234,52,39,0.35); } ._loadingContainer_12d87_6919 { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 48px 24px; color: rgba(255,255,255,0.45); font-size: 13px; }
  
         

._onboardingModal_12d87_6923{max-width:560px;width:90vw;max-height:85vh;overflow-y:auto;padding:32px;border-radius:16px;background:rgb(22,22,27);border:1px solid rgba(255,255,255,0.08)}
._onboardingModalHeader_12d87_6924{text-align:center;margin-bottom:28px}
._onboardingModalIcon_12d87_6925{width:56px;height:56px;margin:0 auto 16px;display:block}
._onboardingModalHeader_12d87_6924 h2{font-size:20px;font-weight:600;color:rgba(255,255,255,0.9);margin:0 0 10px}
._onboardingModalHeader_12d87_6924 p{font-size:13px;line-height:1.6;color:rgba(255,255,255,0.5);max-width:440px;margin:0 auto}
._onboardingSteps_12d87_6928{display:flex;flex-direction:column;gap:10px;margin-bottom:24px}
._onboardingStepCard_12d87_6929{display:flex;gap:14px;padding:14px 16px;border-radius:10px;border:1px solid rgba(255,255,255,0.06);cursor:pointer;transition:border-color .15s}
._onboardingStepCard_12d87_6929:hover{border-color:rgba(255,255,255,0.15)}
._onboardingStepActive_12d87_6931{border-color:rgba(255,255,255,0.2);background:rgba(255,255,255,0.04)}
._onboardingStepNum_12d87_6932{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:600;color:rgba(255,255,255,0.5);flex-shrink:0}
._onboardingStepActive_12d87_6931 ._onboardingStepNum_12d87_6932{background:rgba(255,255,255,0.15);color:rgba(255,255,255,0.8)}
._onboardingStepCard_12d87_6929 h4{font-size:13px;font-weight:600;color:rgba(255,255,255,0.75);margin:0 0 4px}
._onboardingStepCard_12d87_6929 p{font-size:12px;line-height:1.5;color:rgba(255,255,255,0.4);margin:0}
._onboardingModalFooter_12d87_6936{text-align:center}
._onboardingModalDismiss_12d87_6937{padding:10px 28px;border-radius:8px;border:1px solid rgba(255,255,255,0.12);background:rgba(255,255,255,0.06);color:rgba(255,255,255,0.8);font-size:13px;font-weight:600;cursor:pointer;transition:background .15s}
._onboardingModalDismiss_12d87_6937:hover{background:rgba(255,255,255,0.12)}
._visuallyHidden_12d87_6939{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
._quickCreateStepPills_12d87_6940{display:flex;gap:6px;margin-bottom:16px}
._stepPill_12d87_6941{padding:6px 14px;border-radius:20px;border:1px solid rgba(120,120,128,0.25);background:transparent;color:rgba(255,255,255,0.5);font-size:12px;cursor:pointer;transition:background .15s,color .15s,border-color .15s}
._stepPill_12d87_6941:hover{background:rgba(255,255,255,0.06);color:rgba(255,255,255,0.8);border-color:rgba(255,255,255,0.25)}
._activeStepPill_12d87_6943{padding:6px 14px;border-radius:20px;border:1px solid rgba(255,255,255,0.3);background:rgba(255,255,255,0.08);color:rgba(255,255,255,0.9);font-size:12px;font-weight:500;cursor:pointer}

/* Media gallery card — image previews and compact controls */
._overlayMediaGalleryRow_12d87_4110 ._overlayDocumentPreviewWrap_12d87_3748 {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
._overlayMediaGalleryRow_12d87_4110 ._overlayDocumentPreviewWrap_12d87_3748 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
._overlayMediaGalleryFilename_12d87_6958 {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 56px;
}
._overlayMediaGalleryRow_12d87_4110 button {
  font-size: 11px;
}

/* Neutral overlay confirmation banner */
._overlayConfirmBanner_12d87_6972 {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 16px;
}
._overlayConfirmBanner_12d87_6972 h3 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin: 0 0 10px;
}

._associateDocumentsOverlayContent_12d87_6986 {
  max-width: 860px;
  height: 640px;
  min-height: 0;
  max-height: min(640px, calc(100vh - 64px));
}

._associateDocumentsOverlayContent_12d87_6986 ._PaymentOverlayContentMain_12d87_3049 {
  padding: 20px 20px 14px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

._associateDocumentsOverlayContent_12d87_6986 ._PaymentOverlayContentMainSection_12d87_3064 {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}

._associateDocumentsOverlayContent_12d87_6986 ._PaymentOverlayContentMainSectionValue_12d87_3080._Static_12d87_3093 {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 34px;
}

._associateDocumentsOverlayContent_12d87_6986 ._PaymentOverlayContentMainSectionValue_12d87_3080._Static_12d87_3093 svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  flex: 0 0 auto;
}
._wrapper_rt7h4_1 {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

._wrapper_rt7h4_1._disabled_rt7h4_8 {
    opacity: 0.45;
    pointer-events: none;
}

._trigger_rt7h4_13 {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(120, 120, 128, 0.35);
    background: rgba(255, 255, 255, 0.048);
    height: 38px;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 140ms ease, background-color 140ms ease;
    overflow: hidden;
}

._triggerOpen_rt7h4_27 {
    border-color: rgba(160, 160, 168, 0.5);
    background: rgba(255, 255, 255, 0.062);
}

._trigger_rt7h4_13:hover {
    border-color: rgba(160, 160, 168, 0.4);
}

._input_rt7h4_36 {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    padding: 0 11px;
    font-family: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

._input_rt7h4_36::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

._input_rt7h4_36:focus {
    cursor: text;
}

._chevron_rt7h4_60 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 100%;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.45);
    transition: transform 160ms ease, color 140ms ease;
    pointer-events: none;
}

._chevronOpen_rt7h4_72 {
    transform: rotate(180deg);
    color: rgb(194, 122, 58);
}

._dropdown_rt7h4_77 {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 100;
    border-radius: 8px;
    border: 1px solid rgba(120, 120, 128, 0.3);
    background: rgb(28, 28, 32);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.48), 0 4px 8px rgba(0, 0, 0, 0.32);
    overflow: hidden;
    animation: _fadeIn_rt7h4_1 120ms ease;
}

@keyframes _fadeIn_rt7h4_1 {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

._list_rt7h4_102 {
    max-height: 220px;
    overflow-y: auto;
    padding: 4px 0;
    scroll-behavior: smooth;
}

._list_rt7h4_102::-webkit-scrollbar {
    width: 5px;
}

._list_rt7h4_102::-webkit-scrollbar-track {
    background: transparent;
}

._list_rt7h4_102::-webkit-scrollbar-thumb {
    background: rgba(120, 120, 128, 0.35);
    border-radius: 4px;
}

._option_rt7h4_122 {
    padding: 7px 11px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 80ms ease;
}

._option_rt7h4_122:hover {
    background: rgba(255, 255, 255, 0.06);
}

._optionHighlight_rt7h4_137 {
    background: rgba(194, 122, 58, 0.18);
    color: rgba(255, 255, 255, 0.96);
}

._optionSelected_rt7h4_142 {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    background: rgba(255, 255, 255, 0.04);
}

._optionSelected_rt7h4_142._optionHighlight_rt7h4_137 {
    color: rgba(255, 255, 255, 0.96);
}

._noResults_rt7h4_152 {
    padding: 11px 11px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
    user-select: none;
}
._root_1wudz_1 {
    position: relative;
    width: 100%;
}

._trigger_1wudz_6 {
    width: 100%;
    height: 38px;
    padding: 0 11px;
    border: 1px solid rgba(120, 120, 128, 0.35);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.048);
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font: inherit;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    transition: background-color 140ms ease, border-color 140ms ease;
}

._trigger_1wudz_6:hover,
._trigger_1wudz_6[aria-expanded='true'] {
    border-color: rgba(160, 160, 168, 0.5);
    background: rgba(255, 255, 255, 0.062);
}

._trigger_1wudz_6:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.34);
    outline-offset: 2px;
}

._trigger_1wudz_6 svg {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.62);
}

._value_1wudz_41 {
    color: rgba(255, 255, 255, 0.92);
}

._placeholder_1wudz_45 {
    color: rgba(255, 255, 255, 0.46);
}

._picker_1wudz_49 {
    position: absolute;
    z-index: 100000;
    width: min(280px, calc(100vw - 48px));
    max-height: calc(100vh - 24px);
    box-sizing: border-box;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(120, 120, 128, 0.34);
    border-radius: 12px;
    background: rgb(35, 35, 37);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
    color: rgba(255, 255, 255, 0.92);
    animation: _picker-enter_1wudz_1 140ms ease-out;
    transform-origin: top right;
}

._header_1wudz_66 {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 2px 8px;
    font-size: 13px;
    font-weight: 500;
}

._navigation_1wudz_77 {
    display: flex;
    align-items: center;
    gap: 2px;
}

._navigation_1wudz_77 button,
._footer_1wudz_84 button {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font: inherit;
    cursor: pointer;
}

._navigation_1wudz_77 button {
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

._navigation_1wudz_77 button:hover,
._footer_1wudz_84 button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.96);
}

._weekdays_1wudz_108,
._grid_1wudz_109 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

._weekdays_1wudz_108 {
    margin-bottom: 4px;
}

._weekdays_1wudz_108 span {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 500;
}

._day_1wudz_128 {
    width: 30px;
    height: 30px;
    margin: 1px auto;
    padding: 0;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: inherit;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
}

._day_1wudz_128:hover {
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.98);
}

._outside_1wudz_151 {
    color: rgba(255, 255, 255, 0.24);
}

._today_1wudz_155 {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

._selected_1wudz_159,
._selected_1wudz_159:hover {
    background: rgba(255, 255, 255, 0.92);
    color: rgb(32, 32, 34);
    box-shadow: none;
}

._footer_1wudz_84 {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(120, 120, 128, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

._footer_1wudz_84 button {
    min-height: 28px;
    padding: 0 8px;
    border-radius: 7px;
    font-size: 11px;
}

._footer_1wudz_84 button:disabled {
    opacity: 0.34;
    cursor: default;
}

@keyframes _picker-enter_1wudz_1 {
    from {
        opacity: 0;
        transform: translateY(-3px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-color-scheme: light) {
    ._trigger_1wudz_6 {
        border-color: rgba(60, 60, 67, 0.22);
        background: rgba(0, 0, 0, 0.035);
        color: rgba(0, 0, 0, 0.86);
    }

    ._trigger_1wudz_6:hover,
    ._trigger_1wudz_6[aria-expanded='true'] {
        border-color: rgba(60, 60, 67, 0.34);
        background: rgba(0, 0, 0, 0.052);
    }

    ._trigger_1wudz_6 svg,
    ._placeholder_1wudz_45 {
        color: rgba(0, 0, 0, 0.46);
    }

    ._value_1wudz_41 {
        color: rgba(0, 0, 0, 0.86);
    }

    ._picker_1wudz_49 {
        border-color: rgba(60, 60, 67, 0.2);
        background: rgb(248, 248, 249);
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
        color: rgba(0, 0, 0, 0.86);
    }

    ._navigation_1wudz_77 button,
    ._footer_1wudz_84 button,
    ._day_1wudz_128 {
        color: rgba(0, 0, 0, 0.72);
    }

    ._navigation_1wudz_77 button:hover,
    ._footer_1wudz_84 button:hover:not(:disabled),
    ._day_1wudz_128:hover {
        background: rgba(0, 0, 0, 0.07);
        color: rgba(0, 0, 0, 0.92);
    }

    ._weekdays_1wudz_108 span {
        color: rgba(0, 0, 0, 0.4);
    }

    ._outside_1wudz_151 {
        color: rgba(0, 0, 0, 0.24);
    }

    ._today_1wudz_155 {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.24);
    }

    ._selected_1wudz_159,
    ._selected_1wudz_159:hover {
        background: rgba(28, 28, 30, 0.9);
        color: white;
    }
}
._overlay_2puka_1 {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.84);
  backdrop-filter: blur(8px);
  z-index: 4000;
}

._content_2puka_9 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(88vw, 980px);
  height: min(82vh, 720px);
  background: rgb(28, 28, 30);
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 20px 60px 0px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  box-sizing: border-box;
  z-index: 4001;
  overflow: hidden;
}

._content_2puka_9:focus {
  outline: none;
}

._close_2puka_31 {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: none;
  outline: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

._close_2puka_31:focus,
._close_2puka_31:focus-visible {
  outline: none;
  box-shadow: none;
}

._close_2puka_31:hover {
  background: rgba(255, 255, 255, 0.16);
}

._toolbar_2puka_63 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 96px 14px 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.2;
  position: relative;
}

._toolbarGroup_2puka_75 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

._zoomButton_2puka_81,
._zoomReset_2puka_82 {
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

._zoomButton_2puka_81:focus,
._zoomButton_2puka_81:focus-visible,
._zoomReset_2puka_82:focus,
._zoomReset_2puka_82:focus-visible {
  outline: none;
  box-shadow: none;
}

._zoomButton_2puka_81 {
  width: 36px;
  height: 36px;
  display: flex;
  border-radius: 10px;
}

._zoomIcon_2puka_112 {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

._zoomReset_2puka_82 {
  min-width: 64px;
  height: 36px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

._zoomButton_2puka_81:hover,
._zoomReset_2puka_82:hover {
  background: rgba(255, 255, 255, 0.14);
}

._body_2puka_132 {
  flex: 1;
  display: flex;
  min-height: 0;
  overflow: hidden;
}

._viewport_2puka_139 {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 12px;
  overflow: auto;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  padding: 12px;
  box-sizing: border-box;
  touch-action: pan-x pan-y;
  user-select: none;
  -webkit-user-select: none;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

._viewport_2puka_139::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

._canvas_2puka_163 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: top left;
  will-change: transform;
  cursor: inherit;
}

._mediaFrame_2puka_173 {
  display: block;
  max-width: none;
  max-height: none;
  object-fit: contain;
  margin: 0;
  transform-origin: center center;
  will-change: transform;
  transition: transform 120ms ease-out;
}

._pdfFrame_2puka_184 {
  display: block;
  border: none;
  background: #111;
  transform-origin: center center;
  will-change: transform;
  transition: transform 120ms ease-out;
}

._fileFallback_2puka_193 {
  width: min(520px, 100%);
  min-height: 320px;
  margin: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  box-sizing: border-box;
  text-align: center;
}

._fileExtension_2puka_210 {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.94);
}

._fileName_2puka_218 {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
  word-break: break-word;
}

._downloadButton_2puka_226 {
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

._downloadButton_2puka_226:hover {
  background: rgba(255, 255, 255, 0.16);
}

._footer_2puka_243 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 18px;
  margin-top: 14px;
  column-gap: 16px;
}

._footer_2puka_243 > :first-child {
  justify-self: start;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._footerHint_2puka_261 {
  justify-self: center;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
}

._footer_2puka_243 > :last-child {
  justify-self: end;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 640px) {
  ._content_2puka_9 {
    width: 96vw;
    height: 90vh;
    padding: 14px;
  }

  ._fileExtension_2puka_210 {
    font-size: 22px;
  }

  ._fileName_2puka_218 {
    font-size: 13px;
  }

  ._fileFallback_2puka_193 {
    min-height: 200px;
  }
}
._wrapper_19mau_1 {
  position: relative;
  display: inline-flex;
}

._trigger_19mau_6 {
  display: inline-flex;
  cursor: pointer;
}

._menu_19mau_11 {
  min-width: 180px;
  max-width: 240px;
  background-color: rgb(28, 28, 30);
  border: .2px solid rgba(116, 116, 128, 0.25);
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0px 10px 38px rgba(0, 0, 0, 0.3), 0px 10px 20px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.92);
  animation: _widgetMenuPop_19mau_1 0.2s cubic-bezier(0.32, 0.08, 0.24, 1);
}

@keyframes _widgetMenuPop_19mau_1 {
  0% {
    opacity: 0;
    transform: scale(0.62);
  }
  80% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

._menuTitle_19mau_37 {
  padding: 5px 10px 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

._sectionLabel_19mau_46 {
  padding: 6px 10px 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

._divider_19mau_55 {
  height: 1px;
  margin: 3px 8px;
  background: rgba(255, 255, 255, 0.08);
}

._menuItem_19mau_61 {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: background 0.12s;
  font-family: inherit;
  font-size: 13px;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.92);
}

._menuItem_19mau_61:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

._menuItem_19mau_61:active {
  background-color: rgba(255, 255, 255, 0.12);
}

._menuItemActive_19mau_87 {
  color: rgba(255, 255, 255, 0.95);
}

._menuItemContent_19mau_91 {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

._menuItemLabel_19mau_97 {
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._menuItemDesc_19mau_105 {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._checkIcon_19mau_114 {
  color: rgba(255, 255, 255, 0.72);
  flex-shrink: 0;
}

@media (prefers-color-scheme: light) {
  ._menu_19mau_11 {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
    color: #1f2937;
  }

  ._menuTitle_19mau_37,
  ._sectionLabel_19mau_46 {
    color: rgba(0, 0, 0, 0.38);
  }

  ._divider_19mau_55 {
    background: rgba(0, 0, 0, 0.08);
  }

  ._menuItem_19mau_61 {
    color: #1f2937;
  }

  ._menuItem_19mau_61:hover {
    background-color: rgba(200, 200, 200, 0.35);
  }

  ._menuItem_19mau_61:active {
    background-color: rgba(200, 200, 200, 0.5);
  }

  ._menuItemActive_19mau_87 {
    color: #111827;
  }

  ._menuItemLabel_19mau_97 {
    color: inherit;
  }

  ._menuItemDesc_19mau_105 {
    color: rgba(0, 0, 0, 0.42);
  }

  ._checkIcon_19mau_114 {
    color: rgba(0, 0, 0, 0.55);
  }
}
/* Container */
._container_4fi58_2 {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    backdrop-filter: blur(15px) saturate(0.86);
    box-shadow: rgba(0, 0, 0, 0.16) 17px 20px 40px 0px !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 11px;
    overflow: hidden;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
}

/* Header */
._header_4fi58_23 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 22.5%;
    max-height: 80px;
    max-width: 100%;
    padding: 0.5rem 0.75rem;
    background: rgba(248, 248, 252, 0.85);
}

._headerContent_4fi58_34 {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 90%;
    padding: 0.5rem;
    border-radius: 7px;
    user-select: none;
    cursor: pointer;

    &:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }

    &:hover:active {
        opacity: 0.75;
    }
}

._iconWrapper_4fi58_53 {
    width: 40px;
    height: 40px;
    margin-left: 0.2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 8px 16px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    display: none;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

._lightIcon_4fi58_70 {
    display: flex;
}


._mainIcon_4fi58_75 {
    width: 20px;
    height: 20px;
    color: white;
}

._titleSection_4fi58_81 {
    display: flex;
    flex-direction: column;
}

._title_4fi58_81 {
    font-size: 21px;
    font-weight: 500;
    color: #111827;
    margin: 0;
}

._subtitle_4fi58_93 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

._inboxIcon_4fi58_101 {
    width: 19px;
    height: 19px;
    background-color: #959595;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

._smallIcon_4fi58_111 {
    width: 12px;
    height: 12px;
    color: white;
}

._subtitleText_4fi58_117 {
    color: #6b7280;
    font-size: 14px;
}

._composeButton_4fi58_122 {
    width: 3rem;
    height: 3rem;
    background-color: #3b82f6;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

._composeButton_4fi58_122:hover {
    background-color: #2563eb;
}

._buttonIcon_4fi58_140 {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

._body_4fi58_146 {
    display: flex;
    flex-direction: column;
    height: 77.5%;
    width: 100%;
    max-height: calc(100% - 80px);
    background-color: white;
}

/* Email Grid */
._emailGrid_4fi58_156 {
    display: grid;
    flex-grow: 0;
    grid-template-columns: calc(50% - 2rem) calc(50% - 2rem);
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 0 2rem;
    padding: 0.65rem 0;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    user-select: none;


    &::before {
        content: "";
        position: absolute;
        top: calc(100% - 69%);
        bottom: calc(100% - 82%);
        left: calc(50% + 0rem);
        /* 0.5rem = half of column gap (1rem) */
        width: 1px;
        background-color: #ddd;
        /* or any color you want */
    }
}

._emailItem_4fi58_183 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.675rem 0.5rem;
    border-radius: 7px;
    transition: background-color 0.2s cubic-bezier(0.32, 0.08, 0.24, 1);
    cursor: pointer;
    position: relative;
    user-select: none;

    &:not(:last-child, :nth-child(3)) {
        &::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 2.5%;
            width: 87.5%;
            height: 1px;
            background-color: rgba(0, 0, 0, 0.05);
            /* Border color */
        }
    }

    &:hover {
        background-color: rgba(0, 0, 0, 0.1);

        &::before {
            display: none;
        }

    }

    &:hover:active {
        opacity: 0.75;
    }

}


._unreadDot_4fi58_223 {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: transparent;
}

._unreadDotActive_4fi58_231 {
    background-color: #3b82f6;
}

._emailContent_4fi58_235 {
    flex: 1;
    min-width: 0;
}

._emailHeader_4fi58_240 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.125rem;
}

._senderName_4fi58_247 {
    color: #111827;
    font-size: 0.875rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

._senderName_4fi58_247._unread_4fi58_223 {
    font-weight: 400;
}

._timestamp_4fi58_261 {
    color: #9ca3af;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

._subject_4fi58_268 {
    color: #6b7280;
    font-size: 0.7rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

/* No Elements Div */
._noElements_4fi58_279 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

._noElementsMessage_4fi58_287 {
    color: #6b7280;
    font-size: 17px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

._bottomActions_4fi58_297 {
    display: flex;
    justify-content: space-between;
    padding: 0 0.875rem 0.875rem 0.875rem;

    ._bottomButton_4fi58_302 {
        border-radius: 7px;
        width: 1.3rem;
        height: 1.3rem;
        padding: 4px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;

        &:hover {
            background-color: rgba(0, 0, 0, 0.1);
        }

        &:active {
            background-color: rgba(0, 0, 0, 0.2);
        }

        ._moreButton_4fi58_320 {
            width: 1.35rem;
            height: 1.35rem;
            color: #000;
        }

        ._settingsButton_4fi58_326 {
            width: 1.35rem;
            height: 1.35rem;
            color: #707070;
        }
    }

}

@media (prefers-color-scheme: dark) {

    ._lightIcon_4fi58_70 {
        display: none;
    }

    ._darkIcon_4fi58_341 {
        display: flex;
    }

    ._container_4fi58_2 {
        box-shadow: 17px 20px 40px rgba(0, 0, 0, 0.65) !important;
    }

    ._header_4fi58_23 {
        background: rgba(56, 56, 61, 0.6);
    }

    ._headerContent_4fi58_34 {

        &:hover {
            background-color: rgba(255, 255, 255, 0.098);
        }
    }

    ._title_4fi58_81 {
        color: rgba(255, 255, 255, 0.98);
    }

    ._subtitleText_4fi58_117 {
        color: rgba(255, 255, 255, 0.66);
    }

    ._body_4fi58_146 {
        background-color: rgba(0, 0, 0, 0.75);
    }

    ._emailGrid_4fi58_156 {
        &::before {
            background-color: rgba(255, 255, 255, 0.165);
        }
    }

    ._emailItem_4fi58_183 {
        &:not(:last-child, :nth-child(3)) {

            &::before {
                background-color: rgba(255, 255, 255, 0.1);
            }
        }

        &:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
    }


    ._senderName_4fi58_247 {
        color: #ffffff;
    }

    ._timestamp_4fi58_261 {
        color: rgba(255, 255, 255, 0.66);
    }

    ._subject_4fi58_268 {
        color: rgba(255, 255, 255, 0.66);
    }

    ._noElementsMessage_4fi58_287 {
        color: rgba(255, 255, 255, 0.66);
    }

    ._bottomActions_4fi58_297 {
        ._bottomButton_4fi58_302 {

            &:hover {
                background-color: rgba(255, 255, 255, 0.1);
            }

            &:active {
                background-color: rgba(255, 255, 255, 0.2);
            }

            ._moreButton_4fi58_320 {
                color: #ffffff;
            }

            ._settingsButton_4fi58_326 {
                color: #808080;
            }
        }

    }
}@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayBlack-CJPa0fTE.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayBlackItalic-B-bpqL3c.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayBold-BP6G_pDf.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayBoldItalic-BNnmyWvS.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayLight-0AWf-xRh.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayLightItalic-BsSMOA0Q.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayMedium-D3hlmfAS.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayMediumItalic-BqsTF5-l.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayRoman-A6ipJltx.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayRomanItalic-CSGtv2-a.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayThin-PECffUDD.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayThinItalic-CwGV46yN.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}


@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayXThin-C4dWMoTc.ttf') format('truetype');
  font-weight: 50;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayXThinItalic-CvysK3ef.ttf') format('truetype');
  font-weight: 50;
  font-style: italic;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayXXThin-Co6Ee8-s.ttf') format('truetype');
  font-weight: 1;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('/assets/NeueHaasDisplayXXThinItalic-6Ac920_A.ttf') format('truetype');
  font-weight: 1;
  font-style: italic;
}


:root {
  font-family: 'NeueHaasDisplay';
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body{
  margin: 0;
}
._container_1sqip_1 {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    backdrop-filter: blur(15px) saturate(0.86);
    box-shadow: rgba(0, 0, 0, 0.16) 17px 20px 40px 0 !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 11px;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

._header_1sqip_18 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 22.5%;
    max-height: 80px;
    max-width: 100%;
    padding: 0.5rem 0.75rem;
    background: rgba(248, 248, 252, 0.85);
}

._headerContent_1sqip_29 {
    display: flex;
    align-items: center;
    gap: 0.88rem;
    width: 90%;
    padding: 0.42rem 0.5rem;
    border-radius: 7px;
    user-select: none;
    cursor: pointer;

    &:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }

    &:hover:active {
        opacity: 0.75;
    }
}

._iconWrapper_1sqip_48 {
    width: 40px;
    height: 40px;
    margin-left: 0.2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 8px 16px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    display: none;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

._lightIcon_1sqip_65 {
    display: flex;
}

._titleSection_1sqip_69 {
    display: flex;
    flex-direction: column;
}

._title_1sqip_69 {
    font-size: 21px;
    font-weight: 500;
    color: #111827;
    margin: 0;
}

._subtitle_1sqip_81 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.22rem;
    margin-top: 0.18rem;
}

._inboxIcon_1sqip_89 {
    width: 19px;
    height: 19px;
    background-color: #959595;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

._smallIcon_1sqip_99 {
    width: 12px;
    height: 12px;
    color: white;
}

._subtitleText_1sqip_105 {
    color: #6b7280;
    font-size: 14px;
}

._smallBody_1sqip_110 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    width: 100%;
    max-height: calc(100% - 80px);
    background-color: white;
    padding: 18px 18px 50px 27px;
    box-sizing: border-box;
    position: relative;
}

._summaryStack_1sqip_123 {
    display: grid;
    gap: 1.1rem;
    padding: 0;
}

._summaryRow_1sqip_129 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

._summaryMetric_1sqip_136 {
    display: flex;
    align-items: center;
    gap: 0.78rem;
    min-width: 0;
}

._summaryMetricIcon_1sqip_143 {
    width: 24px;
    height: 24px;
    color: rgba(17, 24, 39, 0.95);
    flex-shrink: 0;
    stroke-width: 2.1;
}

._summaryMetricLabel_1sqip_151 {
    color: rgba(17, 24, 39, 0.55);
    font-size: 10.5px;
    line-height: 1.05;
    margin-bottom: 0.18rem;
}

._summaryMetricValue_1sqip_158 {
    color: #111827;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
}

._summaryBadge_1sqip_168 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 0.72rem;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 400;
    flex-shrink: 0;
    white-space: nowrap;
    margin-top: 0.05rem;
}

._summaryBadgeLive_1sqip_183 {
    color: #5fd34f;
    background: rgba(95, 211, 79, 0.18);
}

._summaryBadgeMuted_1sqip_188 {
    color: rgba(17, 24, 39, 0.78);
    background: rgba(148, 163, 184, 0.22);
}

._bottomActions_1sqip_193 {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 0.85rem 0.8rem;

    ._bottomButton_1sqip_202 {
        border-radius: 7px;
        width: 1.3rem;
        height: 1.3rem;
        padding: 4px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;

        &:hover {
            background-color: rgba(0, 0, 0, 0.1);
        }

        &:active {
            background-color: rgba(0, 0, 0, 0.2);
        }

        ._moreButton_1sqip_220 {
            width: 1.35rem;
            height: 1.35rem;
            color: #000;
        }

        ._settingsButton_1sqip_226 {
            width: 1.35rem;
            height: 1.35rem;
            color: #707070;
        }
    }
}

@media (prefers-color-scheme: dark) {
    ._lightIcon_1sqip_65 {
        display: none;
    }

    ._darkIcon_1sqip_239 {
        display: flex;
    }

    ._container_1sqip_1 {
        box-shadow: 17px 20px 40px rgba(0, 0, 0, 0.65) !important;
    }

    ._header_1sqip_18 {
        background: rgba(56, 56, 61, 0.6);
    }

    ._headerContent_1sqip_29 {
        &:hover {
            background-color: rgba(255, 255, 255, 0.098);
        }
    }

    ._title_1sqip_69 {
        color: rgba(255, 255, 255, 0.98);
    }

    ._subtitleText_1sqip_105 {
        color: rgba(255, 255, 255, 0.66);
    }

    ._smallBody_1sqip_110 {
        background-color: rgba(0, 0, 0, 0.75);
    }

    ._summaryMetricIcon_1sqip_143 {
        color: rgba(246, 250, 255, 0.92);
    }

    ._summaryMetricLabel_1sqip_151 {
        color: rgba(217, 226, 238, 0.75);
    }

    ._summaryMetricValue_1sqip_158 {
        color: #f4f8ff;
    }

    ._summaryBadgeLive_1sqip_183 {
        color: #5fd34f;
        background: rgba(36, 88, 35, 0.72);
    }

    ._summaryBadgeMuted_1sqip_188 {
        color: rgba(255, 255, 255, 0.96);
        background: rgba(160, 168, 178, 0.28);
    }

    ._bottomActions_1sqip_193 {
        ._bottomButton_1sqip_202 {
            &:hover {
                background-color: rgba(255, 255, 255, 0.1);
            }

            &:active {
                background-color: rgba(255, 255, 255, 0.2);
            }

            ._moreButton_1sqip_220 {
                color: #ffffff;
            }

            ._settingsButton_1sqip_226 {
                color: #808080;
            }
        }
    }
}

._rollingNumber_1sqip_312 {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
}
