html.sdhl-mobile-app {
  color-scheme: light;
}

#sdhl-mobile-dock-root {
  display: none;
}

html.sdhl-mobile-app body {
  min-height: 100dvh;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #eff4ee 0%, #edf2f4 48%, #e6edf0 100%);
  color: #17232e;
}

html.sdhl-mobile-app body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(227, 239, 232, 0.9), rgba(227, 239, 232, 0) 24%),
    radial-gradient(circle at bottom left, rgba(237, 242, 247, 0.9), rgba(237, 242, 247, 0) 28%);
  z-index: 0;
}

html.sdhl-mobile-app .wrap,
html.sdhl-mobile-app .app {
  position: relative;
  z-index: 1;
  width: 100% !important;
  max-width: 480px;
  margin: 0 auto;
  padding:
    calc(env(safe-area-inset-top, 0px) + 12px)
    12px
    calc(env(safe-area-inset-bottom, 0px) + 126px) !important;
}

html.sdhl-mobile-app #sdhl-user-shell-root {
  display: none !important;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root {
  position: fixed;
  inset: 0;
  display: block;
  pointer-events: none;
  z-index: 40;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root[hidden] {
  display: none !important;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border-radius: 24px;
  border: 1px solid rgba(214, 222, 229, 0.96);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.14);
  pointer-events: auto;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-dock-btn {
  min-height: 56px;
  border: none;
  border-radius: 18px;
  background: transparent;
  color: #6b7280;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 6px 4px;
  cursor: pointer;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-dock-btn.active {
  background: #f3f4f6;
  color: #dc2626;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-dock-btn.logout {
  display: none;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-dock-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 24px;
  height: 24px;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-dock-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-dock-avatar {
  display: none;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: #f8fafc;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-dock-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-dock-btn[data-has-avatar="1"] .sdhl-mobile-dock-avatar {
  display: block;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-dock-btn[data-has-avatar="1"] .sdhl-mobile-dock-avatar-fallback {
  display: none;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-dock-label {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 84px);
  padding: 18px 16px 16px;
  border-radius: 24px;
  border: 1px solid rgba(214, 222, 229, 0.96);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root.profile-open .sdhl-mobile-sheet-backdrop {
  opacity: 1;
  pointer-events: auto;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root.profile-open .sdhl-mobile-sheet {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet-close {
  position: absolute;
  right: 12px;
  top: 12px;
  min-width: 48px;
  height: 36px;
  border: none;
  border-radius: 12px;
  background: #f3f4f6;
  color: #374151;
  font-weight: 800;
  cursor: pointer;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet-avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet-meta strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
  color: #111827;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet-meta span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet-item {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #f9fafb;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet-item span {
  font-size: 11px;
  color: #6b7280;
  font-weight: 700;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet-item strong {
  font-size: 13px;
  line-height: 1.4;
  color: #111827;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet-actions {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

html.sdhl-mobile-app #sdhl-mobile-dock-root .sdhl-mobile-sheet-logout {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(239, 68, 68, 0.24);
  border-radius: 16px;
  background: #fff5f5;
  color: #b91c1c;
  font-weight: 900;
  cursor: pointer;
}

html.sdhl-mobile-app .shell,
html.sdhl-mobile-app .hero,
html.sdhl-mobile-app .panel,
html.sdhl-mobile-app .surface,
html.sdhl-mobile-app .modal,
html.sdhl-mobile-app .modal-card,
html.sdhl-mobile-app .table-shell,
html.sdhl-mobile-app .page-card,
html.sdhl-mobile-app .summaryCard,
html.sdhl-mobile-app .snapshotStat,
html.sdhl-mobile-app .card,
html.sdhl-mobile-app .stat,
html.sdhl-mobile-app .mini-card,
html.sdhl-mobile-app .summaryCard,
html.sdhl-mobile-app .orderCard {
  border-radius: 24px !important;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08) !important;
}

html.sdhl-mobile-app .shell,
html.sdhl-mobile-app .surface,
html.sdhl-mobile-app .panel,
html.sdhl-mobile-app .modal,
html.sdhl-mobile-app .modal-card {
  border-color: rgba(214, 222, 229, 0.95) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(18px);
}

html.sdhl-mobile-app .top,
html.sdhl-mobile-app .hero-top,
html.sdhl-mobile-app .surface-head,
html.sdhl-mobile-app .panelHead,
html.sdhl-mobile-app .modalHead,
html.sdhl-mobile-app .modal-head {
  padding: 16px 16px 0 !important;
  gap: 12px !important;
}

html.sdhl-mobile-app .content,
html.sdhl-mobile-app .body,
html.sdhl-mobile-app .surface-body,
html.sdhl-mobile-app .modalBody,
html.sdhl-mobile-app .modal-body,
html.sdhl-mobile-app .modalFoot {
  padding: 14px 16px 16px !important;
}

html.sdhl-mobile-app .title {
  margin-top: 10px !important;
  font-size: 30px !important;
  line-height: 1.02 !important;
}

html.sdhl-mobile-app .logo {
  font-size: 30px !important;
  line-height: 1 !important;
  letter-spacing: 0.04em;
}

html.sdhl-mobile-app .eyebrow,
html.sdhl-mobile-app .stat-label {
  font-size: 10px !important;
  letter-spacing: 0.08em !important;
}

html.sdhl-mobile-app .sub,
html.sdhl-mobile-app .surface-sub,
html.sdhl-mobile-app .hint,
html.sdhl-mobile-app .tiny,
html.sdhl-mobile-app .sectionHead p,
html.sdhl-mobile-app .hero p,
html.sdhl-mobile-app .modal-subtitle,
html.sdhl-mobile-app .modalSub {
  margin-top: 6px !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: #637180 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

html.sdhl-mobile-app .hero h2,
html.sdhl-mobile-app .surface-title,
html.sdhl-mobile-app .panelHead h3,
html.sdhl-mobile-app .sectionHead h3,
html.sdhl-mobile-app .modal-title,
html.sdhl-mobile-app .modalHead h3 {
  font-size: 20px !important;
  line-height: 1.15 !important;
}

html.sdhl-mobile-app .btn,
html.sdhl-mobile-app .periodTab,
html.sdhl-mobile-app .subTabBtn,
html.sdhl-mobile-app .tabBtn,
html.sdhl-mobile-app .pagerBtn,
html.sdhl-mobile-app .cardBtn {
  min-height: 40px;
  height: 40px !important;
  border-radius: 14px !important;
  padding: 0 14px !important;
  font-size: 12px !important;
  white-space: nowrap;
}

html.sdhl-mobile-app .hero-actions,
html.sdhl-mobile-app .topActions,
html.sdhl-mobile-app .tabs,
html.sdhl-mobile-app .periodTabs,
html.sdhl-mobile-app .subTabRow,
html.sdhl-mobile-app .chartLegend,
html.sdhl-mobile-app .chips,
html.sdhl-mobile-app .chipRow,
html.sdhl-mobile-app .metaRow,
html.sdhl-mobile-app .podiumStats,
html.sdhl-mobile-app .stockActions,
html.sdhl-mobile-app .hero .metaRow,
html.sdhl-mobile-app .top > div:last-child:not(:first-child),
html.sdhl-mobile-app .hero-top > div:last-child:not(:first-child) {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

html.sdhl-mobile-app .hero-actions::-webkit-scrollbar,
html.sdhl-mobile-app .topActions::-webkit-scrollbar,
html.sdhl-mobile-app .tabs::-webkit-scrollbar,
html.sdhl-mobile-app .periodTabs::-webkit-scrollbar,
html.sdhl-mobile-app .subTabRow::-webkit-scrollbar,
html.sdhl-mobile-app .chartLegend::-webkit-scrollbar,
html.sdhl-mobile-app .chips::-webkit-scrollbar,
html.sdhl-mobile-app .chipRow::-webkit-scrollbar,
html.sdhl-mobile-app .metaRow::-webkit-scrollbar,
html.sdhl-mobile-app .stockActions::-webkit-scrollbar,
html.sdhl-mobile-app .top > div:last-child:not(:first-child)::-webkit-scrollbar,
html.sdhl-mobile-app .hero-top > div:last-child:not(:first-child)::-webkit-scrollbar {
  display: none;
}

html.sdhl-mobile-app .hero-actions > *,
html.sdhl-mobile-app .topActions > *,
html.sdhl-mobile-app .tabs > *,
html.sdhl-mobile-app .periodTabs > *,
html.sdhl-mobile-app .subTabRow > *,
html.sdhl-mobile-app .chartLegend > *,
html.sdhl-mobile-app .chips > *,
html.sdhl-mobile-app .chipRow > *,
html.sdhl-mobile-app .metaRow > *,
html.sdhl-mobile-app .podiumStats > *,
html.sdhl-mobile-app .stockActions > *,
html.sdhl-mobile-app .top > div:last-child:not(:first-child) > *,
html.sdhl-mobile-app .hero-top > div:last-child:not(:first-child) > * {
  flex: 0 0 auto !important;
}

html.sdhl-mobile-app .field-grid,
html.sdhl-mobile-app .mini-grid,
html.sdhl-mobile-app .customRange,
html.sdhl-mobile-app .controls,
html.sdhl-mobile-app .stockStats {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 10px !important;
}

html.sdhl-mobile-app .summary,
html.sdhl-mobile-app .snapshotBar,
html.sdhl-mobile-app .summaryCards.day,
html.sdhl-mobile-app .stats {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

html.sdhl-mobile-app .cards,
html.sdhl-mobile-app .topHero,
html.sdhl-mobile-app .topListGrid,
html.sdhl-mobile-app .stockMainCards,
html.sdhl-mobile-app .stockGrid,
html.sdhl-mobile-app .toolbar-grid,
html.sdhl-mobile-app .page-grid {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 12px !important;
}

html.sdhl-mobile-app body.sdhl-screen-portal .grid,
html.sdhl-mobile-app body.sdhl-screen-sales .grid,
html.sdhl-mobile-app body.sdhl-screen-billing .grid,
html.sdhl-mobile-app body.sdhl-screen-dejing .grid {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 12px !important;
}

html.sdhl-mobile-app .user-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

html.sdhl-mobile-app .card,
html.sdhl-mobile-app .summaryCard,
html.sdhl-mobile-app .snapshotStat,
html.sdhl-mobile-app .panel,
html.sdhl-mobile-app .surface,
html.sdhl-mobile-app .stat,
html.sdhl-mobile-app .mini-card,
html.sdhl-mobile-app .page-card,
html.sdhl-mobile-app .stockItem,
html.sdhl-mobile-app .rankMini {
  padding: 14px !important;
}

html.sdhl-mobile-app .summaryCard strong,
html.sdhl-mobile-app .card strong,
html.sdhl-mobile-app .stockMainCardCount,
html.sdhl-mobile-app .rankNo,
html.sdhl-mobile-app .stat-value {
  font-size: 24px !important;
}

html.sdhl-mobile-app .table-shell {
  margin-left: -4px;
  margin-right: -4px;
  border-radius: 22px !important;
}

html.sdhl-mobile-app .perm-table,
html.sdhl-mobile-app .valueTable,
html.sdhl-mobile-app table {
  min-width: 760px;
}

html.sdhl-mobile-app .top > div[style],
html.sdhl-mobile-app #loginForm > div[style],
html.sdhl-mobile-app .top .user {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
}

html.sdhl-mobile-app #loginForm > div[style] .btn,
html.sdhl-mobile-app .top > div[style] .btn,
html.sdhl-mobile-app .top .user .btn {
  width: auto !important;
  min-width: max-content;
}

html.sdhl-mobile-app .top .user {
  width: 100%;
}

html.sdhl-mobile-app #userText {
  min-width: 160px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(244, 246, 248, 0.96);
}

html.sdhl-mobile-app .modal-card {
  width: min(100vw - 16px, 480px) !important;
  margin: 8px auto !important;
  max-height: calc(100dvh - 16px) !important;
}

html.sdhl-mobile-app .modal-close {
  right: 10px !important;
  top: 10px !important;
}

html.sdhl-mobile-app .modal-body {
  grid-template-columns: minmax(0, 1fr) !important;
}

html.sdhl-mobile-app .modal-preview {
  gap: 10px !important;
}

html.sdhl-mobile-app .modal-avatar,
html.sdhl-mobile-app .user-thumb {
  border-radius: 22px !important;
}

html.sdhl-mobile-app .user-card {
  border-radius: 24px !important;
}

html.sdhl-mobile-app .user-name {
  padding: 12px 10px 14px !important;
  font-size: 13px !important;
}

html.sdhl-mobile-app .page-card p,
html.sdhl-mobile-app .card p,
html.sdhl-mobile-app .podiumMeta p,
html.sdhl-mobile-app .rankMiniMeta span,
html.sdhl-mobile-app .stockItemName {
  font-size: 12px !important;
  line-height: 1.45 !important;
}

html.sdhl-mobile-app .section {
  margin-top: 14px !important;
}

html.sdhl-mobile-app .sectionHead {
  margin-bottom: 8px !important;
}

html.sdhl-mobile-app .overlay {
  padding: 8px !important;
}

html.sdhl-mobile-app .noticeToast {
  right: 12px !important;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 12px) !important;
}

html.sdhl-mobile-app body.sdhl-screen-login .content {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 12px !important;
}

html.sdhl-mobile-app body.sdhl-screen-login .hero {
  order: 2;
}

html.sdhl-mobile-app body.sdhl-screen-login .hero p {
  display: none;
}

html.sdhl-mobile-app body.sdhl-screen-login .panel {
  order: 1;
}

html.sdhl-mobile-app body.sdhl-screen-login .top {
  padding-bottom: 0 !important;
}

html.sdhl-mobile-app body.sdhl-screen-portal .hero,
html.sdhl-mobile-app body.sdhl-screen-sales .hero,
html.sdhl-mobile-app body.sdhl-screen-billing .metaRow,
html.sdhl-mobile-app body.sdhl-screen-dejing .hero {
  display: none !important;
}

html.sdhl-mobile-app body.sdhl-screen-sales .grid,
html.sdhl-mobile-app body.sdhl-screen-billing .grid,
html.sdhl-mobile-app body.sdhl-screen-dejing .grid {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 10px !important;
}

html.sdhl-mobile-app body.sdhl-screen-sales .card,
html.sdhl-mobile-app body.sdhl-screen-billing .card,
html.sdhl-mobile-app body.sdhl-screen-dejing .card {
  min-height: 0 !important;
  padding: 12px !important;
  border-radius: 22px !important;
  display: block !important;
}

html.sdhl-mobile-app body.sdhl-screen-sales .card::after,
html.sdhl-mobile-app body.sdhl-screen-billing .card::after,
html.sdhl-mobile-app body.sdhl-screen-dejing .card::after {
  width: 78px;
  height: 78px;
  right: -26px;
  bottom: -26px;
  opacity: 0.1;
}

html.sdhl-mobile-app body.sdhl-screen-sales .cardInner,
html.sdhl-mobile-app body.sdhl-screen-billing .cardInner,
html.sdhl-mobile-app body.sdhl-screen-dejing .cardInner {
  min-height: 0 !important;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

html.sdhl-mobile-app body.sdhl-screen-sales .cardIcon,
html.sdhl-mobile-app body.sdhl-screen-billing .cardIcon,
html.sdhl-mobile-app body.sdhl-screen-dejing .cardIcon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

html.sdhl-mobile-app body.sdhl-screen-sales .cardIcon svg,
html.sdhl-mobile-app body.sdhl-screen-billing .cardIcon svg,
html.sdhl-mobile-app body.sdhl-screen-dejing .cardIcon svg {
  width: 20px;
  height: 20px;
}

html.sdhl-mobile-app body.sdhl-screen-sales .cardBody,
html.sdhl-mobile-app body.sdhl-screen-billing .cardBody,
html.sdhl-mobile-app body.sdhl-screen-dejing .cardBody {
  display: grid;
  gap: 4px;
  min-width: 0;
}

html.sdhl-mobile-app body.sdhl-screen-sales .card h3,
html.sdhl-mobile-app body.sdhl-screen-billing .card h3,
html.sdhl-mobile-app body.sdhl-screen-dejing .card h3 {
  font-size: 15px !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}

html.sdhl-mobile-app body.sdhl-screen-sales .cardDesc,
html.sdhl-mobile-app body.sdhl-screen-billing .cardDesc,
html.sdhl-mobile-app body.sdhl-screen-dejing .cardDesc {
  display: block !important;
  margin: 0 !important;
  color: #111827 !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
  -webkit-line-clamp: 2;
}

html.sdhl-mobile-app body.sdhl-screen-sales .chip,
html.sdhl-mobile-app body.sdhl-screen-billing .chip,
html.sdhl-mobile-app body.sdhl-screen-dejing .chip {
  display: none !important;
}

html.sdhl-mobile-app body.sdhl-screen-portal .top {
  padding-bottom: 6px !important;
}

html.sdhl-mobile-app body.sdhl-screen-portal .content {
  padding-top: 10px !important;
}

html.sdhl-mobile-app body.sdhl-screen-portal .grid {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 10px !important;
}

html.sdhl-mobile-app body.sdhl-screen-portal .card {
  min-height: 0 !important;
  padding: 12px !important;
  border-radius: 22px !important;
  display: block !important;
}

html.sdhl-mobile-app body.sdhl-screen-portal .card::after {
  width: 78px;
  height: 78px;
  right: -26px;
  bottom: -26px;
  opacity: 0.1;
}

html.sdhl-mobile-app body.sdhl-screen-portal .cardInner {
  min-height: 0 !important;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

html.sdhl-mobile-app body.sdhl-screen-portal .cardIcon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

html.sdhl-mobile-app body.sdhl-screen-portal .cardIcon svg {
  width: 20px;
  height: 20px;
}

html.sdhl-mobile-app body.sdhl-screen-portal .cardBody {
  display: grid;
  gap: 4px;
  min-width: 0;
}

html.sdhl-mobile-app body.sdhl-screen-portal .card h3 {
  font-size: 15px !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  color: #dc2626 !important;
}

html.sdhl-mobile-app body.sdhl-screen-portal .cardDesc {
  display: block !important;
  margin: 0 !important;
  color: #111827 !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
  -webkit-line-clamp: 2;
}

html.sdhl-mobile-app body.sdhl-screen-portal .chip {
  display: none !important;
}

html.sdhl-mobile-app body.sdhl-screen-portal .top .user,
html.sdhl-mobile-app body.sdhl-screen-portal .presenceStrip {
  display: none !important;
}

html.sdhl-mobile-app body.sdhl-screen-admin .hero {
  padding-bottom: 18px !important;
}

html.sdhl-mobile-app body.sdhl-screen-admin .stats {
  margin-top: 14px !important;
}

html.sdhl-mobile-app body.sdhl-screen-admin .surface {
  margin-top: 14px !important;
}

html.sdhl-mobile-app body.sdhl-screen-admin .table-shell {
  margin-left: -8px;
  margin-right: -8px;
}

html.sdhl-mobile-app body.sdhl-screen-sales-product-sale .snapshotBar,
html.sdhl-mobile-app body.sdhl-screen-billing-daily-orders .summary {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

html.sdhl-mobile-app body.sdhl-screen-sales-product-sale .topHero,
html.sdhl-mobile-app body.sdhl-screen-sales-product-sale .topListGrid,
html.sdhl-mobile-app body.sdhl-screen-sales-product-sale .stockGrid {
  grid-template-columns: minmax(0, 1fr) !important;
}

html.sdhl-mobile-app body.sdhl-screen-sales-product-sale .productMedia {
  height: 112px !important;
}

html.sdhl-mobile-app body.sdhl-screen-sales-product-sale .podiumCard,
html.sdhl-mobile-app body.sdhl-screen-sales-product-sale .rankMini {
  grid-template-columns: minmax(0, 1fr) !important;
}

html.sdhl-mobile-app body.sdhl-screen-sales-product-sale .podiumCard.gold {
  grid-template-columns: minmax(0, 1fr) !important;
  min-height: 0 !important;
}

html.sdhl-mobile-app body.sdhl-screen-billing-daily-orders .hero,
html.sdhl-mobile-app body.sdhl-screen-billing-archive .hero,
html.sdhl-mobile-app body.sdhl-screen-billing-order-detail .hero {
  padding-bottom: 14px !important;
}

html.sdhl-mobile-app body.sdhl-screen-warehouse .min-h-screen.bg-neutral-50.text-neutral-900 {
  background: transparent !important;
}

html.sdhl-mobile-app body.sdhl-screen-warehouse header.sticky {
  top: calc(env(safe-area-inset-top, 0px) + 10px) !important;
  margin: 0 12px !important;
  border: 1px solid rgba(214, 222, 229, 0.95) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

html.sdhl-mobile-app body.sdhl-screen-warehouse header.sticky .max-w-3xl {
  padding: 12px 14px !important;
}

html.sdhl-mobile-app body.sdhl-screen-warehouse header.sticky h1 {
  font-size: 28px !important;
}

html.sdhl-mobile-app body.sdhl-screen-warehouse header.sticky p {
  font-size: 12px !important;
}

html.sdhl-mobile-app body.sdhl-screen-warehouse main.max-w-3xl {
  padding: 18px 12px 120px !important;
}

html.sdhl-mobile-app body.sdhl-screen-warehouse main .rounded-2xl,
html.sdhl-mobile-app body.sdhl-screen-warehouse main .rounded-3xl {
  border-radius: 24px !important;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-profile {
  top: auto !important;
  right: 12px !important;
  left: 12px !important;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 88px) !important;
  pointer-events: none;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-trigger {
  display: none !important;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-panel {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  width: auto !important;
  border-radius: 22px !important;
  max-height: min(58vh, 420px);
  overflow: auto;
  pointer-events: auto;
}

html.sdhl-mobile-app #sdhl-user-shell-root.profile-open .sdhl-panel {
  display: block !important;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-presence {
  top: calc(env(safe-area-inset-top, 0px) + 12px) !important;
  left: 12px !important;
  right: 12px !important;
  bottom: auto !important;
  max-width: none !important;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-presence-bar,
html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-presence-panel {
  border-radius: 20px !important;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-mobile-dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  z-index: 39;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border-radius: 24px;
  border: 1px solid rgba(214, 222, 229, 0.96);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.14);
  pointer-events: auto;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-mobile-dock[hidden] {
  display: none !important;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-mobile-dock-btn {
  min-height: 56px;
  border: none;
  border-radius: 18px;
  background: transparent;
  color: #22313f;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 6px 4px;
  cursor: pointer;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-mobile-dock-btn.active {
  background: #eef5f2;
  color: #173128;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-mobile-dock-btn[data-mobile-dock-action="logout"] {
  background: #173128;
  color: #fff;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-mobile-dock-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-mobile-dock-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-mobile-dock-label {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

html.sdhl-mobile-app #sdhl-user-shell-root .sdhl-mobile-dock-btn[data-mobile-dock-action="logout"] .sdhl-mobile-dock-label {
  color: rgba(255, 255, 255, 0.82);
}

html.sdhl-mobile-app body.sdhl-screen-login #sdhl-user-shell-root .sdhl-presence {
  display: none !important;
}

@media (max-width: 390px) {
  html.sdhl-mobile-app .summary,
  html.sdhl-mobile-app .snapshotBar,
  html.sdhl-mobile-app .summaryCards.day,
  html.sdhl-mobile-app .stats,
  html.sdhl-mobile-app .user-grid,
  html.sdhl-mobile-app body.sdhl-screen-portal .grid,
  html.sdhl-mobile-app body.sdhl-screen-sales .grid,
  html.sdhl-mobile-app body.sdhl-screen-billing .grid,
  html.sdhl-mobile-app body.sdhl-screen-dejing .grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}
