body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  border-radius: 9px;
}

.brand-identity {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: #102a3a;
  text-align: left;
}

.brand-identity__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.2;
}

.brand-identity__name {
  font-size: 20px;
  font-weight: 700;
}

.brand-identity__full-name {
  margin-top: 3px;
  color: #61727f;
  font-size: 12px;
}

.brand-identity--inverse {
  color: #fff;
}

.brand-identity--inverse .brand-identity__full-name {
  color: rgba(255, 255, 255, 0.66);
}

.brand-identity--compact {
  gap: 10px;
}

.brand-identity--compact .brand-identity__name {
  font-size: 15px;
  font-weight: 650;
}

.brand-identity--compact .brand-identity__full-name {
  font-size: 11px;
}

:root {
  --app-bg: #f4f6f8;
  --app-surface: #ffffff;
  --app-surface-subtle: #f8fafb;
  --app-surface-emphasis: #eef3f5;
  --app-ink: #152630;
  --app-ink-soft: #344752;
  --app-muted: #6d7c85;
  --app-border: #e1e7eb;
  --app-border-strong: #ccd7dd;
  --app-accent: #078f87;
  --app-accent-strong: #05736d;
  --app-accent-soft: #e7f5f3;
  --app-nav: #0d2633;
  --app-nav-deep: #091d28;
  --app-nav-hover: #173b49;
  --app-sidebar-width: 248px;
  --app-header-height: 72px;
  --app-radius-sm: 6px;
  --app-radius: 8px;
  --app-radius-lg: 10px;
  --app-focus: 0 0 0 3px rgba(7, 143, 135, 0.2);
  --app-shadow-popover: 0 12px 36px rgba(21, 38, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  background: #ebe9e2;
  background: var(--app-bg);
  color: #172126;
  color: var(--app-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: #08776f;
  color: var(--app-accent-strong);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.ant-select-focused .ant-select-selector {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(11, 159, 145, 0.25) !important;
  box-shadow: var(--app-focus) !important;
}

.App,
.main-layout,
.app-main-content {
  min-height: 100vh;
  background: #ebe9e2;
  background: var(--app-bg);
}

.main-layout {
  min-width: 0;
  margin-left: 248px;
  margin-left: var(--app-sidebar-width);
}

.app-main-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  padding-top: var(--app-header-height);
}

.app-main-content--authenticated {
  padding-top: 72px;
  padding-top: var(--app-header-height);
}

.product-module-tabs {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: 100%;
  min-width: 0;
  padding: 14px clamp(18px, 3vw, 44px) 0;
  border-bottom: 1px solid #d7d8d1;
  border-bottom: 1px solid var(--app-border);
  background: #fffdf8;
  background: var(--app-surface);
}

.product-module-tabs__intro {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  min-width: 138px;
  padding: 0 18px 13px 0;
  border-right: 1px solid #d7d8d1;
  border-right: 1px solid var(--app-border);
}

.product-module-tabs__eyebrow {
  color: #748083;
  color: var(--app-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-module-tabs__intro strong {
  color: #172126;
  color: var(--app-ink);
  font-size: 15px;
  line-height: 1.3;
}

.product-module-tabs__list {
  display: flex;
  min-width: 0;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 153, 149, 0.55) transparent;
  overscroll-behavior-inline: contain;
}

.product-module-tabs__tab {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px 13px;
  border-bottom: 2px solid transparent;
  color: #748083;
  color: var(--app-muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.product-module-tabs__tab:hover {
  color: #08776f;
  color: var(--app-accent-strong);
}

.product-module-tabs__tab.is-active {
  border-bottom-color: #0b9f91;
  border-bottom-color: var(--app-accent);
  color: #08776f;
  color: var(--app-accent-strong);
}

.product-module-tabs__icon {
  display: inline-flex;
  font-size: 15px;
}

.app-loading-state {
  display: grid;
  min-height: 280px;
  place-items: center;
  align-content: center;
  grid-gap: 12px;
  gap: 12px;
  color: #748083;
  color: var(--app-muted);
}

.app-main-content > :is(
    .dashboard,
    .shop-page,
    .shop-detail-page,
    .inbox-page,
    .profile-vault-page,
    .gpm-page,
    .inventory-page,
    .accounting-page,
    .audit-page,
    .proxy-page,
    .reports-page,
    .returns-page,
    .promotions-page,
    .road-to-1m-page,
    .staff-page,
    .sync-jobs-page,
    .tasks-page,
    .import-products-page,
    .templates-page,
    .two-factor-page
  ) {
  width: 100%;
  min-width: 0;
  padding: 30px clamp(18px, 3vw, 44px) 48px !important;
  background: #ebe9e2 !important;
  background: var(--app-bg) !important;
}

.fixed-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 248px;
  left: var(--app-sidebar-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  height: 72px;
  height: var(--app-header-height);
  padding: 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #0d1215 !important;
  background: var(--app-nav-deep) !important;
  color: #fff;
}

.app-header__left,
.app-header__context,
.topbar-actions,
.profile-menu-trigger {
  display: flex;
  align-items: center;
}

.app-header__left {
  min-width: 0;
  gap: 14px;
}

.app-header__context {
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.app-header__eyebrow,
.app-page-header__eyebrow {
  color: #748083;
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.app-header__eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.app-header__context strong {
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-header__menu-button {
  display: none;
  color: #fff !important;
}

.app-header__quick-find {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  height: 38px;
  margin-left: auto;
  margin-right: 24px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 3px !important;
  border-radius: var(--app-radius-sm) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  text-align: left;
}

.app-header__quick-find:hover {
  border-color: rgba(255, 255, 255, 0.32) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.app-header__quick-find kbd {
  margin-left: auto;
  padding: 2px 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-family: inherit;
}

.topbar-actions {
  flex: 0 0 auto;
  gap: 20px;
}

.topbar-actions .anticon,
.topbar-actions .ant-avatar {
  color: rgba(255, 255, 255, 0.9) !important;
}

.topbar-actions .ant-badge-count {
  box-shadow: 0 0 0 2px #0d1215;
  box-shadow: 0 0 0 2px var(--app-nav-deep);
}

.profile-menu-trigger {
  gap: 9px;
  max-width: 260px;
  padding: 4px 0 4px 14px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.profile-menu-trigger .ant-avatar {
  width: 30px;
  height: 30px;
  background: #1e4b5b;
}

.profile-menu-trigger > span:not(.ant-avatar) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-menu-trigger > .anticon {
  font-size: 11px;
}

.app-sidebar {
  position: fixed;
  z-index: 1001;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: 248px;
  width: var(--app-sidebar-width);
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: #141b1f;
  background: var(--app-nav);
  color: #fff;
}

.app-sidebar__brand {
  display: flex;
  align-items: center;
  min-height: 72px;
  min-height: var(--app-header-height);
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-sidebar__brand .brand-identity {
  width: 100%;
}

.app-sidebar__brand .brand-mark {
  width: 34px;
  height: 34px;
}

.app-sidebar__nav {
  min-height: 0;
  flex: 1 1;
  padding: 18px 12px 20px;
  overflow-y: auto;
}

.app-sidebar__section {
  margin-bottom: 22px;
}

.app-sidebar__section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 8px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.app-sidebar__section-icon {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.app-sidebar__links {
  display: grid;
  grid-gap: 3px;
  gap: 3px;
}

.app-sidebar__link {
  display: flex;
  align-items: center;
  min-height: 38px;
  gap: 11px;
  padding: 0 12px;
  border-radius: 3px;
  border-radius: var(--app-radius-sm);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 520;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.app-sidebar__link:hover {
  color: #fff;
  background: #243136;
  background: var(--app-nav-hover);
}

.app-sidebar__link.is-active {
  color: #fff;
  background: #0b9f91;
  background: var(--app-accent);
  font-weight: 650;
}

.app-sidebar__link-icon {
  display: inline-flex;
  flex: 0 0 18px;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
}

.app-sidebar__link.is-active .app-sidebar__link-icon,
.app-sidebar__link:hover .app-sidebar__link-icon {
  color: #fff;
}

.app-sidebar__link-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-sidebar__footer {
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 8px;
  padding: 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.app-sidebar__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #37c986;
  box-shadow: 0 0 0 3px rgba(55, 201, 134, 0.13);
}

.app-nav-scrim {
  display: none;
}

.quick-find-list {
  display: grid;
  grid-gap: 4px;
  gap: 4px;
  max-height: min(460px, 60vh);
  margin-top: 16px;
  overflow-y: auto;
}

.quick-find-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
  padding: 10px;
  border-radius: 3px;
  border-radius: var(--app-radius-sm);
  color: #172126;
  color: var(--app-ink);
  text-decoration: none;
}

.quick-find-item:hover {
  background: #e0f2ee;
  background: var(--app-accent-soft);
  color: #08776f;
  color: var(--app-accent-strong);
}

.quick-find-item__icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 6px;
  color: #08776f;
  color: var(--app-accent-strong);
  background: #e0f2ee;
  background: var(--app-accent-soft);
}

.quick-find-item > span:nth-child(2) {
  display: grid;
  grid-gap: 2px;
  gap: 2px;
  min-width: 0;
}

.quick-find-item strong,
.quick-find-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-find-item small {
  color: #748083;
  color: var(--app-muted);
}

.app-page-header {
  width: 100%;
  margin-bottom: 22px;
}

.app-page-header__main,
.app-page-header__context {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.app-page-header__title-group {
  min-width: 0;
}

.app-page-header__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #08776f;
  color: var(--app-accent-strong);
}

.app-page-header__title-group .ant-typography {
  margin: 0;
  color: #172126;
  color: var(--app-ink);
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.app-page-header__subtitle {
  max-width: 720px;
  margin-top: 8px;
  color: #748083;
  color: var(--app-muted);
  font-size: 13px;
  line-height: 1.5;
}

.app-page-header__actions {
  display: flex;
  flex: 0 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.app-page-header__context {
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #d7d8d1;
  border-top: 1px solid var(--app-border);
}

.app-page-header__filters,
.app-page-header__metrics {
  min-width: 0;
}

.app-page-header__metrics {
  margin-left: auto;
}

.custom-footer {
  display: flex;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 58px !important;
  padding: 0 24px !important;
  border-top: 1px solid #d7d8d1;
  border-top: 1px solid var(--app-border);
  color: #748083 !important;
  color: var(--app-muted) !important;
  background: #fffdf8 !important;
  background: var(--app-surface) !important;
  font-size: 12px;
}

.custom-footer__separator {
  color: #b9c0bc;
  color: var(--app-border-strong);
}

/* Ant Design is the existing component system. These tokens keep all pages
   coherent without forcing each feature to rewrite its business logic. */
.app-main-content .ant-card {
  border: 1px solid #d7d8d1;
  border: 1px solid var(--app-border);
  border-radius: 4px;
  border-radius: var(--app-radius);
  box-shadow: none;
  background: #fffdf8;
  background: var(--app-surface);
}

.app-main-content .ant-card-head {
  min-height: 54px;
  padding: 0 18px;
  border-bottom-color: #d7d8d1;
  border-bottom-color: var(--app-border);
}

.app-main-content .ant-card-head-title {
  color: #172126;
  color: var(--app-ink);
  font-size: 14px;
  font-weight: 700;
}

.app-main-content .ant-card-body {
  padding: 18px;
}

.app-main-content .ant-btn {
  min-height: 36px;
  border-radius: 3px;
  border-radius: var(--app-radius-sm);
  box-shadow: none;
  font-weight: 620;
}

.app-main-content .ant-btn-primary {
  border-color: #0b9f91;
  border-color: var(--app-accent);
  background: #0b9f91;
  background: var(--app-accent);
}

.app-main-content .ant-btn-primary:hover {
  border-color: #08776f;
  border-color: var(--app-accent-strong);
  background: #08776f;
  background: var(--app-accent-strong);
}

/* Keep icon-only ghost actions readable against tables and pale surfaces. */
.app-main-content .ant-btn-primary.ant-btn-background-ghost {
  border-color: #0b9f91 !important;
  border-color: var(--app-accent) !important;
  color: #08776f !important;
  color: var(--app-accent-strong) !important;
  background: transparent !important;
}

.app-main-content .ant-btn-primary.ant-btn-background-ghost .anticon {
  color: currentColor !important;
}

.app-main-content .ant-btn-primary.ant-btn-background-ghost:hover,
.app-main-content .ant-btn-primary.ant-btn-background-ghost:focus-visible {
  border-color: #08776f !important;
  border-color: var(--app-accent-strong) !important;
  color: #fff !important;
  background: #08776f !important;
  background: var(--app-accent-strong) !important;
}

.app-main-content .ant-btn-primary.ant-btn-background-ghost:disabled,
.app-main-content .ant-btn-primary.ant-btn-background-ghost.ant-btn-disabled {
  border-color: #b9c0bc !important;
  border-color: var(--app-border-strong) !important;
  color: #748083 !important;
  color: var(--app-muted) !important;
  background: #e6eee9 !important;
  background: var(--app-surface-emphasis) !important;
}

.app-main-content .ant-input,
.app-main-content .ant-input-affix-wrapper,
.app-main-content .ant-select-selector,
.app-main-content .ant-picker {
  border-color: #b9c0bc !important;
  border-color: var(--app-border-strong) !important;
  border-radius: 3px !important;
  border-radius: var(--app-radius-sm) !important;
}

.app-main-content .ant-input,
.app-main-content .ant-input-affix-wrapper,
.app-main-content .ant-select-single .ant-select-selector,
.app-main-content .ant-picker {
  min-height: 38px;
}

.app-main-content .ant-tabs-top > .ant-tabs-nav {
  margin-bottom: 18px;
}

.app-main-content .ant-tabs-tab {
  color: #748083;
  color: var(--app-muted);
  font-weight: 600;
}

.app-main-content .ant-tabs-tab-active .ant-tabs-tab-btn {
  color: #08776f !important;
  color: var(--app-accent-strong) !important;
}

.app-main-content .ant-tabs-ink-bar {
  height: 3px !important;
  border-radius: 3px 3px 0 0;
  background: #0b9f91;
  background: var(--app-accent);
}

.app-main-content .ant-table-wrapper {
  overflow: hidden;
  border: 1px solid #d7d8d1;
  border: 1px solid var(--app-border);
  border-radius: 4px;
  border-radius: var(--app-radius);
  background: #fffdf8;
  background: var(--app-surface);
}

.app-main-content .ant-table {
  color: #3d4b4e;
  color: var(--app-ink-soft);
  background: #fffdf8;
  background: var(--app-surface);
}

.app-main-content .ant-table-thead > tr > th {
  padding: 12px 14px !important;
  border-top: 0 !important;
  border-bottom: 1px solid #d7d8d1 !important;
  border-bottom: 1px solid var(--app-border) !important;
  color: #748083;
  color: var(--app-muted);
  background: #f5f2ea !important;
  background: var(--app-surface-subtle) !important;
  font-size: 11px;
  font-weight: 750 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.app-main-content .ant-table-tbody > tr > td {
  padding: 13px 14px !important;
  border-bottom-color: #d7d8d1;
  border-bottom-color: var(--app-border);
}

.app-main-content .ant-table-tbody > tr:hover > td {
  background: #e0f2ee !important;
  background: var(--app-accent-soft) !important;
}

.app-main-content .ant-empty {
  padding: 34px 0;
}

.app-main-content .ant-alert {
  border-radius: 3px;
  border-radius: var(--app-radius-sm);
}

.ant-dropdown,
.ant-popover,
.ant-modal-wrap {
  z-index: 1100;
}

.quick-find-modal .ant-modal-content {
  border-radius: 6px;
  border-radius: var(--app-radius-lg);
  box-shadow: 0 18px 40px rgba(20, 27, 31, 0.2);
  box-shadow: var(--app-shadow-popover);
}

.ant-tag {
  border-radius: 4px;
  font-size: 11px;
  line-height: 20px;
}

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

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #d7d8d1;
  border: 1px solid var(--app-border);
  border-radius: 4px;
  border-radius: var(--app-radius);
  background: #fffdf8;
  background: var(--app-surface);
}

.dashboard-metric {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  grid-gap: 12px;
  gap: 12px;
  min-width: 0;
  padding: 18px 20px;
  border: 0;
  border-right: 1px solid #d7d8d1;
  border-right: 1px solid var(--app-border);
  color: #172126;
  color: var(--app-ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.dashboard-metric:last-child {
  border-right: 0;
}

.dashboard-metric:hover {
  background: #e0f2ee;
  background: var(--app-accent-soft);
}

.dashboard-metric__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: #e6eee9;
  background: var(--app-surface-emphasis);
  font-size: 18px;
}

.dashboard-metric .ant-statistic {
  min-width: 0;
}

.dashboard-metric .ant-statistic-title {
  margin-bottom: 3px;
  color: #748083;
  color: var(--app-muted);
  font-size: 12px;
}

.dashboard-metric .ant-statistic-content {
  color: #172126;
  color: var(--app-ink);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
}

.dashboard-metric__arrow {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #b9c0bc;
  color: var(--app-border-strong);
  font-size: 16px;
}

.dashboard-action-panel {
  padding: 20px 22px;
  border: 1px solid #d7d8d1;
  border: 1px solid var(--app-border);
  border-radius: 4px;
  border-radius: var(--app-radius);
  background: #fffdf8;
  background: var(--app-surface);
}

.dashboard-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d7d8d1;
  border-bottom: 1px solid var(--app-border);
}

.dashboard-section-kicker {
  display: block;
  margin-bottom: 5px;
  color: #08776f;
  color: var(--app-accent-strong);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-section-heading h3,
.dashboard-action-list h4 {
  margin: 0;
  color: #172126;
  color: var(--app-ink);
}

.dashboard-section-heading h3 {
  font-size: 17px;
}

.dashboard-section-link {
  color: #08776f;
  color: var(--app-accent-strong);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.dashboard-action-panel > .ant-row {
  margin-top: 4px;
}

.dashboard-action-list {
  min-height: 138px;
  padding-top: 12px;
}

.dashboard-action-list h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
}

.dashboard-action-list h4 .anticon {
  color: #08776f;
  color: var(--app-accent-strong);
}

.dashboard-action-list .ant-list-item {
  min-height: 38px;
  padding: 8px 0;
  border-bottom-color: #d7d8d1;
  border-bottom-color: var(--app-border);
}

.dashboard-list-message {
  min-width: 0;
  color: #3d4b4e;
  color: var(--app-ink-soft);
  line-height: 1.4;
}

.dashboard-list-message > span {
  color: #748083;
  color: var(--app-muted);
}

.dashboard-chart-grid,
.dashboard-data-grid {
  display: grid;
  grid-gap: 20px;
  gap: 20px;
}

.dashboard-chart-grid {
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.9fr);
}

.dashboard-chart-grid__main,
.dashboard-chart-grid__side,
.dashboard-data-grid > * {
  min-width: 0;
}

.dashboard-chart-grid .ant-card,
.dashboard-data-grid .ant-card {
  height: 100%;
}

.dashboard-data-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-row-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
}

.one-row-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}

.clickable-row,
.clickable-cell {
  cursor: pointer;
}

.label-url:hover {
  color: #08776f;
  color: var(--app-accent-strong);
  text-decoration: underline;
}

.custom-table-header .ant-table-thead > tr > th {
  color: #fff;
  background: #141b1f !important;
  background: var(--app-nav) !important;
}

.scrollable-submenu {
  max-height: 300px;
  overflow-y: auto;
}

.growth-widget-containerClass > div {
  display: flex;
  justify-content: center;
}

.forgot-password-form-button {
  width: 100%;
}

.ant-image-mask-info {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.ant-image-mask-info .anticon {
  margin: 0 !important;
  font-size: 16px;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: #bdc9cf;
  background-clip: content-box;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #bdc9cf transparent;
}

@media (max-width: 1024px) {
  .fixed-header {
    padding: 0 20px;
  }

  .app-header__quick-find {
    min-width: 180px;
    margin-right: 16px;
  }

  .profile-email {
    max-width: 150px;
  }

  .dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-metric:nth-child(2) {
    border-right: 0;
  }

  .dashboard-metric:nth-child(-n + 2) {
    border-bottom: 1px solid #d7d8d1;
    border-bottom: 1px solid var(--app-border);
  }

  .dashboard-chart-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --app-sidebar-width: 248px;
  }

  .main-layout {
    margin-left: 0;
  }

  .app-sidebar {
    box-shadow: 18px 0 40px rgba(5, 22, 31, 0.2);
    transform: translateX(-102%);
    transition: transform 180ms ease;
  }

  .app-sidebar.is-open {
    transform: translateX(0);
  }

  .app-nav-scrim {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: block;
    padding: 0;
    border: 0;
    background: rgba(8, 28, 39, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .app-nav-scrim.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .fixed-header {
    left: 0;
    padding: 0 14px;
  }

  .app-header__menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    min-height: 34px;
  }

  .app-header__quick-find {
    min-width: 38px;
    width: 38px;
    margin-right: 10px;
    padding: 0;
    justify-content: center;
  }

  .app-header__quick-find > span:not(.ant-btn-icon),
  .app-header__quick-find > kbd,
  .topbar-actions .ant-space-item:first-child,
  .profile-email {
    display: none;
  }

  .topbar-actions {
    gap: 8px;
  }

  .profile-menu-trigger {
    padding-left: 4px;
  }

  .app-main-content > :is(
      .dashboard,
      .shop-page,
      .shop-detail-page,
      .inbox-page,
      .profile-vault-page,
      .gpm-page,
      .inventory-page,
      .accounting-page,
      .audit-page,
      .proxy-page,
      .reports-page,
      .returns-page,
      .promotions-page,
      .road-to-1m-page,
      .staff-page,
      .sync-jobs-page,
      .tasks-page,
      .import-products-page,
      .templates-page,
      .two-factor-page
    ) {
    padding: 22px 14px 32px !important;
  }

  .app-page-header__main,
  .app-page-header__context {
    flex-direction: column;
    align-items: stretch;
  }

  .app-page-header__actions,
  .app-page-header__actions > .ant-space,
  .app-page-header__filters,
  .app-page-header__filters > .ant-space {
    width: 100%;
  }

  .app-page-header__actions > .ant-space {
    justify-content: flex-start;
  }

  .app-page-header__metrics {
    margin-left: 0;
  }

  .app-main-content .ant-card-head {
    padding: 0 14px;
  }

  .app-main-content .ant-card-body {
    padding: 14px;
  }

  .app-main-content .ant-table-wrapper {
    overflow-x: auto;
  }

  .custom-footer {
    flex-wrap: wrap;
    min-height: 58px;
    padding: 12px 16px !important;
  }

  .dashboard-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-action-panel {
    padding: 16px;
  }

  .dashboard-data-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dashboard-metric {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Control-room visual direction: warm workbench canvas, hard-edged panels,
   and status rails that make operational priority visible at a glance. */
:root {
  --app-bg: #ebe9e2;
  --app-surface: #fffdf8;
  --app-surface-subtle: #f5f2ea;
  --app-surface-emphasis: #e6eee9;
  --app-ink: #172126;
  --app-ink-soft: #3d4b4e;
  --app-muted: #748083;
  --app-border: #d7d8d1;
  --app-border-strong: #b9c0bc;
  --app-accent: #0b9f91;
  --app-accent-strong: #08776f;
  --app-accent-soft: #e0f2ee;
  --app-nav: #141b1f;
  --app-nav-deep: #0d1215;
  --app-nav-hover: #243136;
  --app-radius-sm: 3px;
  --app-radius: 4px;
  --app-radius-lg: 6px;
  --app-focus: 0 0 0 3px rgba(11, 159, 145, 0.25);
  --app-shadow-popover: 0 18px 40px rgba(20, 27, 31, 0.2);
  --app-coral: #ef684f;
  --app-amber: #d59c2c;
  --app-blue: #4b88c8;
}

body {
  background: #ebe9e2;
  background: var(--app-bg);
  color: #172126;
  color: var(--app-ink);
}

.main-layout,
.app-main-content,
.App {
  background: #ebe9e2;
  background: var(--app-bg);
}

.fixed-header {
  height: 68px;
  border-bottom: 1px solid #2c3a3e;
  background: #0d1215 !important;
  background: var(--app-nav-deep) !important;
}

.fixed-header,
.fixed-header .app-header__context,
.fixed-header .app-header__context strong,
.fixed-header .topbar-actions,
.fixed-header .topbar-actions .ant-space {
  line-height: 1.2;
}

.fixed-header::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  background: #0b9f91;
  background: var(--app-accent);
  content: "";
}

.app-header__context {
  border-left: 2px solid #ef684f;
  border-left: 2px solid var(--app-coral);
  padding-left: 12px;
}

.app-header__eyebrow {
  color: #94a5a4;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.app-header__context strong {
  font-size: 16px;
  letter-spacing: 0;
}

.app-header__quick-find {
  min-width: 250px;
  border-color: #35454a !important;
  border-radius: 3px !important;
  background: #1b262a !important;
}

.profile-menu-trigger .ant-avatar {
  border: 1px solid #5a7375;
  background: #244044;
}

.app-sidebar {
  background: #141b1f;
  background: var(--app-nav);
  border-right: 1px solid #2c383b;
}

.app-sidebar__brand {
  min-height: 68px;
  border-bottom-color: #2c383b;
}

.app-sidebar__nav {
  padding: 20px 10px 24px;
}

.app-sidebar__section {
  margin-bottom: 24px;
}

.app-sidebar__section-label {
  padding: 0 12px 9px;
  color: #7f9292;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.app-sidebar__section-icon {
  color: #d59c2c;
  color: var(--app-amber);
}

.app-sidebar__links {
  gap: 2px;
}

.app-sidebar__link {
  min-height: 36px;
  border-radius: 2px;
  color: #b7c3c2;
}

.app-sidebar__link:hover {
  background: #243136;
  background: var(--app-nav-hover);
}

.app-sidebar__link.is-active {
  position: relative;
  color: #fff;
  background: #203b3c;
  font-weight: 700;
}

.app-sidebar__link.is-active::before {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 3px;
  background: #0b9f91;
  background: var(--app-accent);
  content: "";
}

.app-sidebar__link.is-active .app-sidebar__link-icon {
  color: #61d4c7;
}

.app-sidebar__footer {
  border-top-color: #2c383b;
  color: #829392;
}

.app-main-content > :is(
    .dashboard,
    .shop-page,
    .shop-detail-page,
    .inbox-page,
    .profile-vault-page,
    .gpm-page,
    .inventory-page,
    .accounting-page,
    .audit-page,
    .proxy-page,
    .reports-page,
    .returns-page,
    .promotions-page,
    .road-to-1m-page,
    .staff-page,
    .sync-jobs-page,
    .tasks-page,
    .import-products-page,
    .templates-page,
    .two-factor-page
  ) {
  padding-top: 34px !important;
  background: #ebe9e2 !important;
  background: var(--app-bg) !important;
}

.app-page-header {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #b9c0bc;
  border-bottom: 1px solid var(--app-border-strong);
}

.app-page-header::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 68px;
  height: 3px;
  background: #ef684f;
  background: var(--app-coral);
  content: "";
}

.app-page-header__eyebrow {
  margin-bottom: 9px;
  color: #ef684f;
  color: var(--app-coral);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.app-page-header__title-group .ant-typography {
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 800;
  letter-spacing: 0;
}

.app-page-header__subtitle {
  color: #3d4b4e;
  color: var(--app-ink-soft);
}

.app-main-content .ant-card,
.app-main-content .ant-table-wrapper,
.dashboard-action-panel,
.dashboard-metrics {
  border-color: #b9c0bc;
  border-color: var(--app-border-strong);
  border-radius: 4px;
  border-radius: var(--app-radius);
  box-shadow: 0 1px 0 rgba(23, 33, 38, 0.04);
  background: #fffdf8;
  background: var(--app-surface);
}

.app-main-content .ant-card-head {
  min-height: 56px;
  background: #f5f2ea;
  background: var(--app-surface-subtle);
}

.app-main-content .ant-card-head-title {
  letter-spacing: 0;
}

.app-main-content .ant-table-thead > tr > th {
  color: #566668;
  background: #e9ece7 !important;
}

.app-main-content .ant-table-tbody > tr > td {
  background: #fffdf8;
  background: var(--app-surface);
}

.app-main-content .ant-table-tbody > tr:hover > td {
  background: #edf7f3 !important;
}

.app-main-content .ant-btn-primary {
  border-color: #0b9f91;
  border-color: var(--app-accent);
  background: #0b9f91;
  background: var(--app-accent);
}

.app-main-content .ant-btn-primary:hover {
  border-color: #08776f;
  border-color: var(--app-accent-strong);
  background: #08776f;
  background: var(--app-accent-strong);
}

.dashboard__content {
  gap: 26px;
}

.dashboard .app-page-header {
  margin-bottom: 0;
}

.dashboard-metrics {
  gap: 10px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dashboard-metric {
  min-height: 118px;
  padding: 18px 18px 16px;
  border: 1px solid #b9c0bc;
  border: 1px solid var(--app-border-strong);
  border-top: 4px solid #0b9f91;
  border-top: 4px solid var(--app-accent);
  border-right: 1px solid #b9c0bc;
  border-right: 1px solid var(--app-border-strong);
  border-radius: 3px;
  background: #fffdf8;
  background: var(--app-surface);
}

.dashboard-metric:nth-child(2) {
  border-top-color: #ef684f;
  border-top-color: var(--app-coral);
}

.dashboard-metric:nth-child(3) {
  border-top-color: #d59c2c;
  border-top-color: var(--app-amber);
}

.dashboard-metric:nth-child(4) {
  border-top-color: #4b88c8;
  border-top-color: var(--app-blue);
}

.dashboard-metric:hover {
  background: #f5fbf7;
  transform: translateY(-2px);
}

.dashboard-metric__icon {
  border-radius: 3px;
  background: #e6eee9;
  background: var(--app-surface-emphasis);
}

.dashboard-metric .ant-statistic-content {
  font-size: 28px;
  font-weight: 800;
}

.dashboard-metric__arrow {
  right: 16px;
  bottom: 15px;
  color: #ef684f;
  color: var(--app-coral);
}

.dashboard-action-panel {
  position: relative;
  padding: 22px 24px;
  border-left: 5px solid #ef684f;
  border-left: 5px solid var(--app-coral);
}

.dashboard-section-kicker {
  color: #ef684f;
  color: var(--app-coral);
  letter-spacing: 0.14em;
}

.dashboard-section-heading {
  border-bottom-color: #b9c0bc;
  border-bottom-color: var(--app-border-strong);
}

.dashboard-section-heading h3 {
  font-size: 20px;
  font-weight: 800;
}

.dashboard-section-link {
  color: #08776f;
  color: var(--app-accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard-action-list h4 .anticon {
  color: #ef684f;
  color: var(--app-coral);
}

.dashboard-chart-grid,
.dashboard-data-grid {
  gap: 14px;
}

.dashboard-chart-grid .ant-card,
.dashboard-data-grid .ant-card {
  border-top: 3px solid #172126;
  border-top: 3px solid var(--app-ink);
}

.dashboard-data-grid .ant-card:nth-child(2) {
  border-top-color: #0b9f91;
  border-top-color: var(--app-accent);
}

@media (max-width: 760px) {
  .fixed-header {
    height: 64px;
  }

  .app-page-header {
    margin-bottom: 22px;
  }

  .dashboard-metrics {
    gap: 8px;
  }

  .dashboard-metric {
    min-height: 102px;
  }

  .dashboard-action-panel {
    padding: 18px 16px;
  }
}

@media (max-width: 760px) {
  .fixed-header {
    padding: 0 14px;
  }

  .app-header__left {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }

  .app-header__context {
    max-width: 116px;
    padding-left: 8px;
  }

  .app-header__context strong {
    max-width: 108px;
    font-size: 14px;
  }

  .app-header__quick-find {
    flex: 0 0 38px;
    min-width: 38px;
    width: 38px;
    margin-right: 8px;
  }

  .topbar-actions {
    flex: 0 0 auto;
    gap: 7px;
  }
}

/* Dashboard rebuild: a command center instead of a metric-card wall. */
.dashboard__content {
  gap: 28px;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  min-height: 310px;
  border-bottom: 1px solid #b9c0bc;
  border-bottom: 1px solid var(--app-border-strong);
}

.dashboard-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 40px 28px 0;
}

.dashboard-hero__eyebrow,
.dashboard-hero__brief-top,
.dashboard-command-center__rule,
.dashboard-data-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #748083;
  color: var(--app-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dashboard-hero__index {
  color: #ef684f;
  color: var(--app-coral);
  font-family: "Courier New", monospace;
}

.dashboard-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #08776f;
  color: var(--app-accent-strong);
}

.dashboard-live-indicator i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0b9f91;
  background: var(--app-accent);
}

.dashboard-hero h1 {
  max-width: 760px;
  margin: 26px 0 16px;
  color: #172126;
  color: var(--app-ink);
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

.dashboard-hero h1 em {
  color: #ef684f;
  color: var(--app-coral);
  font-style: normal;
}

.dashboard-hero__copy > p {
  max-width: 460px;
  margin: 0;
  color: #3d4b4e;
  color: var(--app-ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.dashboard-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
}

.dashboard-command-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 6px;
  border-bottom: 1px solid #b9c0bc;
  border-bottom: 1px solid var(--app-border-strong);
  color: #3d4b4e;
  color: var(--app-ink-soft);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.dashboard-command-link span {
  color: #ef684f;
  color: var(--app-coral);
  font-size: 16px;
}

.dashboard-command-link--primary {
  color: #08776f;
  color: var(--app-accent-strong);
  border-bottom-color: #0b9f91;
  border-bottom-color: var(--app-accent);
}

.dashboard-hero__brief {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 22px 18px;
  border-left: 1px solid #34464b;
  color: #fff;
  background: #141b1f;
  background: var(--app-nav);
}

.dashboard-hero__brief::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #0b9f91;
  background: var(--app-accent);
  content: "";
}

.dashboard-hero__brief-top {
  justify-content: space-between;
  color: #91a5a3;
}

.dashboard-hero__brief-top strong {
  color: #f4c95d;
  font-size: 11px;
}

.dashboard-hero__brief-value {
  margin-top: 36px;
  color: #fff;
  font-size: 68px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.dashboard-hero__brief-label {
  max-width: 150px;
  color: #bdccca;
  font-size: 12px;
  line-height: 1.4;
}

.dashboard-hero__brief-meta {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid #34464b;
  color: #91a5a3;
  font-family: "Courier New", monospace;
  font-size: 11px;
}

.dashboard-hero__brief-meta b {
  margin-right: 5px;
  color: #fff;
  font-size: 15px;
}

.dashboard-hero__brief-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #78908e;
  font-family: "Courier New", monospace;
  font-size: 9px;
  line-height: 1.35;
}

.dashboard-hero__brief-foot span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0b9f91;
  background: var(--app-accent);
}

.dashboard-signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #172126;
  border-top: 1px solid var(--app-ink);
  border-bottom: 1px solid #b9c0bc;
  border-bottom: 1px solid var(--app-border-strong);
}

.dashboard-signal {
  position: relative;
  display: grid;
  grid-template-columns: 30px 24px minmax(0, 1fr) 18px;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
  min-width: 0;
  min-height: 92px;
  padding: 14px 16px;
  border: 0;
  border-right: 1px solid #b9c0bc;
  border-right: 1px solid var(--app-border-strong);
  color: #172126;
  color: var(--app-ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color 150ms ease, transform 150ms ease;
}

.dashboard-signal:last-child {
  border-right: 0;
}

.dashboard-signal::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0b9f91;
  background: var(--app-accent);
  content: "";
}

.dashboard-signal--2::before { background: #ef684f; background: var(--app-coral); }
.dashboard-signal--3::before { background: #d59c2c; background: var(--app-amber); }
.dashboard-signal--4::before { background: #4b88c8; background: var(--app-blue); }

.dashboard-signal:hover {
  background: #fffdf8;
  background: var(--app-surface);
  transform: translateY(-2px);
}

.dashboard-signal__index {
  color: #748083;
  color: var(--app-muted);
  font-family: "Courier New", monospace;
  font-size: 10px;
}

.dashboard-signal__icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  font-size: 17px;
}

.dashboard-signal__body {
  display: grid;
  min-width: 0;
  grid-gap: 2px;
  gap: 2px;
}

.dashboard-signal__label {
  overflow: hidden;
  color: #748083;
  color: var(--app-muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-signal__body strong {
  overflow: hidden;
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-signal__arrow {
  align-self: end;
  color: #ef684f;
  color: var(--app-coral);
  font-size: 17px;
}

.dashboard-command-center {
  border: 1px solid #b9c0bc;
  border: 1px solid var(--app-border-strong);
  border-left: 5px solid #ef684f;
  border-left: 5px solid var(--app-coral);
  background: #fffdf8;
  background: var(--app-surface);
}

.dashboard-command-center__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid #b9c0bc;
  border-bottom: 1px solid var(--app-border-strong);
}

.dashboard-command-center__header h2 {
  margin: 7px 0 0;
  color: #172126;
  color: var(--app-ink);
  font-size: 23px;
  font-weight: 850;
}

.dashboard-command-center__rule {
  color: #ef684f;
  color: var(--app-coral);
  font-family: "Courier New", monospace;
  font-size: 9px;
}

.dashboard-command-center > .ant-row {
  margin: 0 !important;
}

.dashboard-action-list {
  min-height: 160px;
  margin: 0;
  padding: 18px 22px 20px;
}

.dashboard-action-list--primary {
  border-right: 1px solid #b9c0bc;
  border-right: 1px solid var(--app-border-strong);
}

.dashboard-action-list h4 {
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dashboard-action-list h4 .anticon {
  color: #ef684f;
  color: var(--app-coral);
}

.dashboard-data-heading {
  justify-content: space-between;
  padding-top: 2px;
  border-bottom: 1px solid #b9c0bc;
  border-bottom: 1px solid var(--app-border-strong);
  padding-bottom: 10px;
}

.dashboard-data-heading > span:last-child {
  color: #748083;
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.dashboard-chart-grid--control-room .ant-card,
.dashboard-data-grid .ant-card {
  border-top: 1px solid #172126;
  border-top: 1px solid var(--app-ink);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .dashboard-hero {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

  .dashboard-hero h1 {
    font-size: 52px;
  }

  .dashboard-signal {
    grid-template-columns: 22px 22px minmax(0, 1fr);
  }

  .dashboard-signal__arrow {
    display: none;
  }
}

@media (max-width: 760px) {
  .dashboard-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .dashboard-hero__copy {
    padding: 0 0 24px;
  }

  .dashboard-hero h1 {
    margin-top: 22px;
    font-size: 46px;
  }

  .dashboard-hero__brief {
    min-height: 236px;
    border-left: 0;
    border-top: 4px solid #0b9f91;
    border-top: 4px solid var(--app-accent);
  }

  .dashboard-hero__brief::before {
    display: none;
  }

  .dashboard-hero__brief-value {
    margin-top: 18px;
    font-size: 56px;
  }

  .dashboard-signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-signal:nth-child(2) {
    border-right: 0;
  }

  .dashboard-signal:nth-child(-n + 2) {
    border-bottom: 1px solid #b9c0bc;
    border-bottom: 1px solid var(--app-border-strong);
  }

  .dashboard-command-center__header,
  .dashboard-data-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-action-list--primary {
    border-right: 0;
    border-bottom: 1px solid #b9c0bc;
    border-bottom: 1px solid var(--app-border-strong);
  }
}

@media (max-width: 760px) {
  .product-module-tabs {
    gap: 12px;
    padding: 12px 16px 0;
  }

  .product-module-tabs__intro {
    min-width: 92px;
    padding-right: 10px;
  }

  .product-module-tabs__intro strong {
    font-size: 13px;
  }

  .product-module-tabs__tab {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 12px;
  }
}

