@charset "UTF-8";
/* Custom styles goes here */
:root {
  --app-transition-base: 0.2s ease;
  --app-transition-slow: 0.3s ease;
}

body {
  color: var(--bs-body-color);
}

.card {
  transition: transform var(--app-transition-base), box-shadow var(--app-transition-base), border-color var(--app-transition-base);
}

.card-header {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.btn,
.nav-link,
.dropdown-item,
.form-control,
.form-select,
.input-group-text,
a {
  transition: color var(--app-transition-base), background-color var(--app-transition-base), border-color var(--app-transition-base), box-shadow var(--app-transition-base), transform var(--app-transition-base);
}

.btn {
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.form-control:focus,
.form-select:focus,
.input-group-text:focus-within {
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.15);
}

.form-control,
.form-select,
.input-group-text {
  min-height: 2.75rem;
}

/* .form-control,
.form-select {
  border-radius: 1rem!important;
} */

.input-group > .form-control,
.input-group > .form-select,
.input-group > .input-group-text {
  min-height: 3rem;
}

.table > :not(caption) > * > * {
  vertical-align: middle;
}

.filter-card .card-body {
  padding: 1rem;
}

.filter-card .form-select,
.filter-card .form-control,
.filter-card .input-group-text {
  min-height: 2.625rem;
}

.filter-card .form-select,
.filter-card .form-control {
  background-color: var(--bs-body-bg);
}

.filter-summary {
  min-height: 2.625rem;
}

.filter-toggle {
  min-height: 2.625rem;
}

.filter-toggle .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  min-height: 1.25rem;
}

.filter-toggle .badge.d-none {
  display: inline-flex !important;
  visibility: hidden;
  opacity: 0;
}

.filter-panel {
  width: min(26rem, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  background-color: var(--bs-body-bg);
}

.filter-panel .dropdown-menu {
  inset: auto !important;
}

.filter-quick-action {
  display: inline-flex;
  align-items: center;
  min-height: 1.875rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  color: var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), 0.08);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
}

.filter-quick-action:hover,
.filter-quick-action:focus {
  color: var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), 0.14);
}

.filter-panel-body {
  max-height: min(70vh, 40rem);
  overflow-y: auto;
}

.filter-panel-footer {
  position: sticky;
  bottom: 0;
  background-color: var(--bs-body-bg);
}

.filter-chips {
  min-height: 2.625rem;
}

.filter-chip {
  min-height: 2.625rem;
  padding-inline: 0.875rem;
  color: var(--bs-body-color) !important;
  border-color: rgba(var(--bs-primary-rgb), 0.4) !important;
  background-color: var(--bs-body-bg) !important;
  box-shadow: none;
}

.filter-chip:hover {
  color: var(--bs-body-color) !important;
  border-color: rgba(var(--bs-primary-rgb), 0.55) !important;
  background-color: rgba(var(--bs-primary-rgb), 0.08) !important;
  transform: translateY(-1px);
  box-shadow: 0 0.35rem 0.85rem rgba(var(--bs-primary-rgb), 0.08);
}

.filter-chip:focus,
.filter-chip:focus-visible,
.filter-chip:active,
.filter-chip.active,
.show > .filter-chip.dropdown-toggle {
  color: var(--bs-body-color) !important;
  border-color: rgba(var(--bs-primary-rgb), 0.55) !important;
  background-color: rgba(var(--bs-primary-rgb), 0.1) !important;
  box-shadow: none;
}

.filter-chip .text-muted {
  font-size: 0.8125rem;
  color: var(--bs-secondary-color) !important;
  opacity: 1;
}

.filter-chip .fw-semibold {
  font-weight: 500 !important;
  color: var(--bs-primary) !important;
}

.filter-chip i {
  color: var(--bs-primary) !important;
}

.filter-toolbar .input-group-text,
.filter-panel .input-group-text {
  padding-inline: 0.75rem;
  font-size: 0.875rem;
  color: var(--bs-secondary-color);
  background-color: var(--bs-tertiary-bg);
}

.filter-toolbar .form-select,
.filter-toolbar .form-control,
.filter-panel .form-select,
.filter-panel .form-control {
  font-size: 0.9375rem;
}

.filter-actions .btn {
  min-height: 2.625rem;
  min-width: 2.625rem;
}

.filter-actions .btn .tf-icons {
  font-size: 1rem;
}

.workspace-page {
  display: flex;
  flex: 1 1 auto;
  min-height: 100%;
  height: 100%;
}

.workspace-page-embedded {
  min-height: 0;
  height: auto;
}

.workspace-page-with-nav {
  flex-direction: column;
  min-height: 0;
}

.workspace-page-with-nav > .nav-align-top {
  flex-shrink: 0;
}

.workspace-page-with-nav > .workspace-shell {
  flex: 1 1 0;
  min-height: 0;
  height: auto;
}

.workspace-shell {
  background-color: var(--bs-white);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 100%;
}

.workspace-shell-embedded {
  min-height: clamp(24rem, 62vh, 46rem);
  max-height: min(62vh, 46rem);
}

.workspace-header {
  background-color: var(--bs-white);
}

.workspace-header-row {
  min-height: 2.25rem;
}

.workspace-actions {
  flex: 0 0 auto;
}

.workspace-header-row .filter-summary {
  flex: 0 0 auto;
}

.workspace-toolbar {
  min-height: 2.625rem;
}

.workspace-toolbar .filter-chips {
  flex: 1 1 22rem;
  min-height: 0;
}

.workspace-toolbar-main {
  min-width: 0;
}

.workspace-toolbar-search {
  min-width: min(100%, 18rem);
  flex: 1 1 18rem;
}

.workspace-toolbar-meta {
  flex: 0 0 auto;
}

.workspace-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.workspace-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.workspace-scroll.overflow-auto {
  overflow: auto;
}

.workspace-scroll.ps .ps__thumb-y,
.workspace-scroll.ps .ps__rail-y {
  width: 0.125rem !important;
}

.workspace-scroll.ps .ps__rail-y {
  right: 0.25rem !important;
  left: auto !important;
  background: none !important;
}

.workspace-scroll.ps .ps__rail-y:hover,
.workspace-scroll.ps .ps__rail-y:focus,
.workspace-scroll.ps .ps__rail-y.ps--clicking,
.workspace-scroll.ps .ps__rail-y:hover > .ps__thumb-y,
.workspace-scroll.ps .ps__rail-y:focus > .ps__thumb-y,
.workspace-scroll.ps .ps__rail-y.ps--clicking > .ps__thumb-y {
  width: 0.375rem !important;
}

.workspace-scroll.ps .ps__thumb-y,
.workspace-scroll.ps .ps__rail-y.ps--clicking > .ps__thumb-y {
  background: rgba(56, 69, 81, 0.2) !important;
}

.workspace-scroll .table-responsive {
  width: 100%;
}

.dashboard-scroll {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard-hero {
  background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.06), rgba(var(--bs-primary-rgb), 0.015));
}

.dashboard-hero-row {
  width: 100%;
}

.dashboard-header-copy {
  min-width: 0;
  max-width: 40rem;
}

.dashboard-hero-eyebrow {
  letter-spacing: 0.08em;
}

.dashboard-hero-title {
  font-size: 1.35rem;
  line-height: 1.25;
}

.dashboard-hero-subtitle {
  max-width: 34rem;
  line-height: 1.5;
}

.dashboard-hero-meta {
  min-width: 0;
}

.dashboard-quick-access {
  padding-bottom: 0.25rem;
}

.dashboard-section-card {
  background: rgba(var(--bs-body-color-rgb), 0.015);
  border-color: rgba(var(--bs-body-color-rgb), 0.08) !important;
}

.dashboard-section + .dashboard-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
}

.dashboard-section:first-child,
.dashboard-quick-access + .dashboard-section {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.dashboard-section-label {
  letter-spacing: 0.06em;
}

.dashboard-tile {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-height: 3.75rem;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
  border-radius: 1rem;
  background: var(--bs-white);
  color: var(--bs-body-color);
  text-decoration: none;
  transition: border-color var(--app-transition-base), background-color var(--app-transition-base), box-shadow var(--app-transition-base), transform var(--app-transition-base);
}

.dashboard-tile-featured {
  min-height: 100%;
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.04), rgba(var(--bs-white-rgb), 1));
}

.dashboard-tile:hover,
.dashboard-tile:focus {
  color: var(--bs-body-color);
  background-color: rgba(var(--bs-primary-rgb), 0.03);
  border-color: rgba(var(--bs-primary-rgb), 0.16);
  box-shadow: 0 0.5rem 1rem rgba(var(--bs-primary-rgb), 0.08);
  transform: translateY(-1px);
}

.dashboard-tile-featured:hover,
.dashboard-tile-featured:focus {
  background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.07), rgba(var(--bs-white-rgb), 1));
}

.dashboard-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.85rem;
  background: rgba(var(--bs-primary-rgb), 0.08);
  color: var(--bs-primary);
}

.dashboard-tile-icon-featured {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
}

.dashboard-tile-icon i {
  font-size: 1.35rem;
  line-height: 1;
}

.dashboard-tile-icon-featured i {
  font-size: 1.5rem;
}

.dashboard-tile-copy {
  min-width: 0;
}

.dashboard-tile-label {
  display: block;
  font-weight: 600;
  line-height: 1.3;
}

.dashboard-tile-description {
  display: block;
  margin-top: 0.2rem;
  line-height: 1.4;
}

.dashboard-tile-action {
  flex-shrink: 0;
  white-space: nowrap;
}

.dashboard-tile-chevron {
  flex-shrink: 0;
  color: var(--bs-secondary-color);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform var(--app-transition-base), color var(--app-transition-base);
}

.dashboard-tile:hover .dashboard-tile-chevron,
.dashboard-tile:focus .dashboard-tile-chevron {
  color: var(--bs-primary);
  transform: translateX(2px);
}

@media (max-width: 767.98px) {
  .dashboard-hero-title {
    font-size: 1.2rem;
  }

  .dashboard-hero-meta {
    width: 100%;
  }

  .dashboard-tile-featured {
    align-items: flex-start;
  }

  .dashboard-tile-action {
    display: none;
  }
}

.workspace-footer {
  flex: 0 0 auto;
  padding: 0.875rem 1.25rem;
  border-top: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
}

.workspace-footer .card-body {
  flex: 0 0 auto;
  padding: 0;
}

.workspace-footer .demo-inline-spacing {
  margin-top: 0;
}

.workspace-footer .demo-inline-spacing > * {
  margin-top: 0 !important;
  margin-right: 0 !important;
}

.workspace-footer .pagination {
  margin-bottom: 0;
}

.workspace-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  align-self: stretch;
  width: 100%;
  min-height: 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: transparent;
}

.workspace-body > .workspace-scroll.workspace-empty-state,
.workspace-body > .workspace-empty-state {
  flex: 1 1 0;
  min-height: 0;
}

.workspace-empty-state-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 28rem;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* Legacy markup fallback: old empty states used Bootstrap .alert-secondary (grey box) */
.workspace-empty-state .alert:not(.alert-danger) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1rem !important;
  text-align: center;
  width: auto;
  max-width: 28rem;
  margin: 0;
}

.workspace-empty-state .alert:not(.alert-danger) [class*="bx"] {
  font-size: 3.5rem !important;
  line-height: 1;
  opacity: 0.4;
}

.workspace-empty-state .alert:not(.alert-danger) p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--bs-body-color);
}

.workspace-empty-state .alert:not(.alert-danger) p.small {
  margin-top: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--bs-secondary-color);
}

.workspace-empty-state-content [class*="bx"] {
  font-size: 3.5rem;
  line-height: 1;
  opacity: 0.4;
  color: var(--bs-secondary-color);
}

.workspace-empty-state-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--bs-body-color);
}

.workspace-empty-state-subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--bs-secondary-color);
}

.workspace-empty-state--compact {
  flex: none;
  min-height: 12rem;
  padding: 2rem 1rem;
}

.workspace-empty-state--embedded {
  flex: none;
  padding: 3rem 1.5rem;
}

.workspace-empty-state > .alert.alert-danger {
  width: auto;
  max-width: 28rem;
  margin: 0;
}

.workspace-table thead th {
  padding-inline: 1.25rem;
  padding-block: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bs-secondary-color);
  border-top: 0;
  white-space: nowrap;
}

.workspace-table tbody td {
  padding-inline: 1.25rem;
}

.table tbody tr {
  transition: background-color var(--app-transition-base);
}

.layout-wrapper.layout-content-navbar,
.layout-wrapper.layout-content-navbar > .layout-container {
  min-height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}

body.page-allow-shell-scroll .layout-wrapper.layout-content-navbar,
body.page-allow-shell-scroll .layout-wrapper.layout-content-navbar > .layout-container {
  max-height: none;
  overflow: visible;
}

.app-content-layout-page,
.app-content-shell {
  flex: 1 1 auto;
  min-height: 0;
}

.app-content-layout-page {
  min-height: 0;
  max-height: 100%;
}

body.page-allow-shell-scroll .app-content-layout-page,
body.page-allow-shell-scroll .app-content-shell,
body.page-allow-shell-scroll .app-scroll-container {
  height: auto;
  max-height: none;
  overflow: visible;
}

.app-scroll-container {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
}

.app-scroll-container.container-p-y:not([class^=pb-]):not([class*=" pb-"]) {
  padding-bottom: 0 !important;
}

@media (min-width: 768px) {
  .app-scroll-container.container-p-y:not([class^=pb-]):not([class*=" pb-"]) {
    padding-bottom: 1.5rem !important;
  }
}

.layout-navbar {
  border-radius: 1.25rem;
}

.app-compact-navbar {
  height: 3.25rem !important;
  min-height: 3.25rem;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.app-compact-navbar .navbar-nav {
  row-gap: 0.35rem;
}

.layout-navbar.navbar-detached.app-compact-navbar {
  margin-top: 0 !important;
  padding-inline: 0.875rem !important;
}

.app-compact-navbar-chip {
  min-width: auto;
  padding: 0.45rem 0.65rem !important;
}

.app-compact-navbar-chip .small {
  line-height: 1.15;
}

.app-compact-navbar .trade-zone-name {
  font-size: 0.72rem;
}

.app-compact-navbar .text-muted.small,
.app-compact-navbar .exchange-rate .small.text-muted {
  font-size: 0.74rem;
}

.exchange-rate .bx-chevron-down {
  display: inline-block;
  transition: transform 0.15s ease-in-out;
}

.exchange-rate.show .bx-chevron-down {
  transform: rotate(180deg);
}

.layout-navbar.app-compact-navbar .navbar-nav .nav-item.dropdown {
  position: relative;
  float: none;
}

.layout-navbar.app-compact-navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  margin-top: 0.25rem;
  width: auto;
}

.layout-navbar.app-compact-navbar .navbar-nav .nav-item.dropdown .dropdown-menu.dropdown-menu-end {
  left: auto;
  right: 0;
}

.layout-navbar.app-compact-navbar .app-compact-navbar-meta .dropdown-menu {
  min-width: 9rem;
}

.layout-navbar.app-compact-navbar .dropdown-user .dropdown-menu {
  min-width: 14rem;
}

.app-compact-account {
  min-height: 2.5rem;
}

.app-compact-account .menu-icon {
  font-size: 1.15rem;
}

.dropdown-menu {
  padding: 0.5rem;
}

.dropdown-item {
  border-radius: 0.875rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(var(--bs-primary-rgb), 0.08);
}

.modal .btn-close,
.modal-header .btn-close {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  margin: -0.5rem;
  border-radius: 0.75rem;
  border: 0;
  background-color: transparent;
  background-image: var(--bs-btn-close-bg);
  background-position: center;
  background-size: 0.75rem;
  opacity: 0.55;
  box-shadow: none;
  transition: background-color var(--app-transition-base), opacity var(--app-transition-base);
  transform: none !important;
}

.modal .btn-close:hover,
.modal .btn-close:focus,
.modal .btn-close:active,
.modal-header .btn-close:hover,
.modal-header .btn-close:focus {
  background-color: rgba(var(--bs-body-color-rgb), 0.06);
  opacity: 0.85;
  box-shadow: none;
  transform: none !important;
}

.modal .modal-header .btn-close,
.modal-header .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.modal-header .btn-close:focus-visible,
.modal .btn-close:focus-visible {
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.12);
}

.link-body-emphasis:hover,
.link-body-emphasis:focus {
  color: var(--bs-primary) !important;
}

.validation-message,
.field-validation-error,
.validation-summary-errors ul {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.4;
}

.validation-summary-errors ul {
  padding-left: 1rem;
}

.product-search-group {
  max-width: 32rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: var(--bs-white);
}

.product-search-group:focus-within {
  border-color: rgba(var(--bs-primary-rgb), 0.55);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.12);
}

.product-search-group .input-group-text {
  color: var(--bs-secondary-color);
  border: 0;
  background-color: transparent;
}

.product-search-group .form-control,
.product-search-group .product-search-submit,
.product-search-group .btn {
  border: 0 !important;
}

.product-search-group .product-search-clear {
  background-color: transparent;
  color: var(--bs-secondary-color);
}

.product-search-group .product-search-clear:hover,
.product-search-group .product-search-clear:focus,
.product-search-group .product-search-clear:active {
  background-color: rgba(var(--bs-body-color-rgb), 0.04);
  color: var(--bs-body-color);
}

.product-search-group .form-control {
  background-color: transparent;
}

.product-search-group .form-control:focus,
.product-search-group .product-search-submit:focus,
.product-search-group .product-search-submit:active,
.product-search-group .product-search-clear:focus,
.product-search-group .product-search-clear:active {
  box-shadow: none;
  outline: 0;
}

.product-search-submit:hover,
.product-search-submit:focus,
.product-search-submit:active {
  transform: none !important;
}

.editor-workspace-page {
  width: 100%;
}

.editor-workspace-shell {
  width: 100%;
  /* max-width: 72rem; */
  /* margin-inline: auto; */
}

.editor-workspace-header-copy {
  max-width: 40rem;
}

.editor-workspace-body {
  width: 100%;
}

.editor-form-section {
  height: 100%;
  padding: 1.25rem;
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.03), rgba(var(--bs-primary-rgb), 0.01));
}

.editor-form-section .form-label {
  margin-bottom: 0.625rem;
}

.editor-form-section .select2-container {
  width: 100% !important;
}

.editor-form-section .select2-container--bootstrap-5 .select2-selection {
  min-height: calc(1.5em + 0.9375rem + 2px);
  border-radius: 0.75rem;
  border-color: var(--bs-border-color);
}

.editor-form-section .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.editor-form-section .select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-color: rgba(var(--bs-primary-rgb), 0.55);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.12);
}

.editor-form-section .select2-container--bootstrap-5 .select2-selection--multiple {
  padding: 0.375rem 0.5rem;
}

.editor-form-section .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
  border-radius: 999px;
}

.currencies-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.currency-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.125rem;
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
  border-radius: 1rem;
  background: var(--bs-white);
  color: var(--bs-body-color);
  transition: border-color var(--app-transition-base), background-color var(--app-transition-base), box-shadow var(--app-transition-base), transform var(--app-transition-base);
}

.currency-list-item:hover,
.currency-list-item:focus {
  color: var(--bs-body-color);
  background-color: rgba(var(--bs-primary-rgb), 0.03);
  border-color: rgba(var(--bs-primary-rgb), 0.16);
  box-shadow: 0 0.5rem 1rem rgba(var(--bs-primary-rgb), 0.08);
  transform: translateY(-1px);
}

.currency-list-item-main {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.currency-list-item-name {
  min-width: 0;
  color: var(--bs-body-color);
}

.currency-list-item-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.currency-list-item-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background-color: rgba(var(--bs-primary-rgb), 0.12);
  color: var(--bs-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(var(--bs-primary-rgb), 0.14);
}

.dictionary-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.dictionary-card .workspace-scroll {
  max-height: min(56vh, 32rem);
}

@media (max-width: 767.98px) {
  body.page-allow-shell-scroll .dictionary-card .workspace-scroll {
    max-height: none;
  }
}

.dictionary-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dictionary-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.125rem;
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
  border-radius: 1rem;
  background: var(--bs-white);
  transition: border-color var(--app-transition-base), background-color var(--app-transition-base), box-shadow var(--app-transition-base), transform var(--app-transition-base);
}

.dictionary-list-item:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.03);
  border-color: rgba(var(--bs-primary-rgb), 0.16);
  box-shadow: 0 0.5rem 1rem rgba(var(--bs-primary-rgb), 0.08);
  transform: translateY(-1px);
}

.dictionary-list-item-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.dictionary-list-item-name {
  display: block;
  min-width: 0;
  color: var(--bs-body-color);
  word-break: break-word;
}

.extraction-prompt-field {
  min-height: 20rem;
  resize: vertical;
  line-height: 1.55;
}

.extraction-settings-note {
  border: 1px solid rgba(var(--bs-primary-rgb), 0.12);
  background: rgba(var(--bs-primary-rgb), 0.04);
}

.auth-card {
  backdrop-filter: blur(8px);
}

.auth-subtitle {
  max-width: 28rem;
}

.cart-item {
  transition: background-color 0.2s ease;
}

.cart-item:hover {
  background-color: #f8f9fa;
}

.cart-summary {
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

.modal-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-loader .loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
}

.modal-loader .loader-content {
  position: relative;
  z-index: 101;
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
  border: 1px solid #d9dee3;
}

.modal-loader .spinner-border {
  width: 2.5rem;
  height: 2.5rem;
}

.order-items-table > :not(caption) > * > * {
  padding: 0.95rem 0.75rem;
}

.modern-data-table {
  --modern-table-border: rgba(var(--bs-body-color-rgb), 0.08);
  --modern-table-header-bg: var(--bs-white);
  --modern-table-hover-bg: rgba(var(--bs-primary-rgb), 0.035);
  --modern-table-muted: var(--bs-secondary-color);
}

.modern-data-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: var(--modern-table-header-bg);
  box-shadow: inset 0 -1px 0 var(--modern-table-border);
}

.modern-data-table tbody tr {
  cursor: pointer;
}

.modern-data-table tbody td {
  padding-block: 1rem;
  border-color: var(--modern-table-border);
  vertical-align: middle;
}

.modern-data-table tbody tr:hover {
  background-color: var(--modern-table-hover-bg);
}

.modern-row-id-wrap,
.orders-status-stack,
.orders-item-stats {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.modern-row-id {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--bs-primary-rgb), 0.14);
  background-color: rgba(var(--bs-primary-rgb), 0.07);
  color: var(--bs-primary);
  font-weight: 700;
  line-height: 1;
}

.modern-table-date,
.modern-table-secondary,
.modern-table-primary,
.orders-comment-text,
.modern-table-count,
.orders-total-value {
  color: var(--bs-body-color);
}

.modern-table-date,
.modern-table-secondary {
  font-weight: 500;
}

.modern-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.modern-status-chip--subtle {
  font-weight: 500;
}

.modern-status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

.modern-status-chip--warning {
  color: #9a6700;
  background-color: rgba(255, 193, 7, 0.14);
  border-color: rgba(255, 193, 7, 0.2);
}

.modern-status-chip--info {
  color: #0f6e8d;
  background-color: rgba(13, 202, 240, 0.14);
  border-color: rgba(13, 202, 240, 0.2);
}

.modern-status-chip--primary {
  color: var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), 0.12);
  border-color: rgba(var(--bs-primary-rgb), 0.18);
}

.modern-status-chip--success {
  color: #1f7a4d;
  background-color: rgba(25, 135, 84, 0.14);
  border-color: rgba(25, 135, 84, 0.2);
}

.modern-status-chip--danger {
  color: #b42318;
  background-color: rgba(220, 53, 69, 0.12);
  border-color: rgba(220, 53, 69, 0.18);
}

.orders-total-value {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.orders-currency-sign {
  margin-left: 0.3rem;
  color: var(--modern-table-muted);
  font-weight: 600;
}

.modern-table-count {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 2rem;
  font-weight: 700;
}

.orders-item-stats {
  align-items: flex-start;
}

.orders-mini-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.orders-mini-stat i {
  font-size: 0.95rem;
}

.orders-mini-stat--success {
  color: #1f7a4d;
  background-color: rgba(25, 135, 84, 0.12);
}

.orders-mini-stat--danger {
  color: #b42318;
  background-color: rgba(220, 53, 69, 0.1);
}

.orders-comment-cell {
  max-width: 14rem;
}

.orders-comment-text {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.modern-data-table-footer {
  border-top-color: rgba(var(--bs-body-color-rgb), 0.08);
}

.modern-data-table-footer .card-body {
  width: 100%;
}

.modern-data-table-footer .pagination {
  gap: 0.4rem;
}

.modern-data-table-footer .page-link {
  min-width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
  color: var(--bs-body-color);
  background-color: var(--bs-white);
  box-shadow: none;
}

.modern-data-table-footer .page-item.active .page-link {
  color: var(--bs-white);
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.modern-data-table-footer .page-item.disabled .page-link {
  color: var(--bs-secondary-color);
  background-color: rgba(var(--bs-body-color-rgb), 0.03);
  border-color: rgba(var(--bs-body-color-rgb), 0.08);
}

.modern-data-table-footer .page-link:hover {
  color: var(--bs-primary);
  border-color: rgba(var(--bs-primary-rgb), 0.2);
  background-color: rgba(var(--bs-primary-rgb), 0.05);
}

.modern-data-table--detail tbody tr {
  cursor: default;
}

.modern-data-table--detail tbody tr:hover {
  background-color: transparent;
}

.modern-data-table--detail tbody tr[data-order-item-id] {
  cursor: pointer;
}

.modern-data-table--detail tbody tr[data-order-item-id]:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.035);
}

.order-overview-shell,
.order-overview-card {
  background: var(--bs-white);
}

.order-overview-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}

.order-overview-action-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.order-overview-subtle-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  color: var(--bs-body-color);
  text-decoration: none;
  font-weight: 600;
}

.order-overview-subtle-action:hover,
.order-overview-subtle-action:focus {
  color: var(--bs-primary);
}

.order-overview-subtle-action-start {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.order-overview-subtle-action-start i,
.order-overview-subtle-action > i {
  color: var(--bs-primary);
}

.order-overview-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: rgba(var(--bs-body-color-rgb), 0.05);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.order-overview-eyebrow {
  margin-bottom: 0.45rem;
  color: var(--bs-secondary-color);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-overview-title {
  color: var(--bs-body-color);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.order-overview-shell .order-overview-title {
  font-size: 1.05rem;
}

.order-overview-inline-list a {
  color: inherit !important;
  text-decoration: underline !important;
  text-underline-offset: 0.16em;
}

.order-overview-inline-list a:hover {
  color: inherit !important;
}

.order-overview-comment-block {
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
}

.order-overview-comment-toggle {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
  border-radius: 999px;
  background-color: var(--bs-white);
  color: var(--bs-secondary-color);
  box-shadow: none !important;
}

.order-overview-comment-toggle:hover,
.order-overview-comment-toggle:focus,
.order-overview-comment-toggle:active {
  color: var(--bs-primary);
  border-color: rgba(var(--bs-primary-rgb), 0.2);
  background-color: rgba(var(--bs-primary-rgb), 0.04);
}

.order-overview-comment-editor {
  min-height: 5.5rem;
  resize: vertical;
  border-radius: 0.85rem;
  border-color: rgba(var(--bs-body-color-rgb), 0.1);
  background-color: rgba(var(--bs-body-color-rgb), 0.015);
}

.order-overview-comment-editor:focus {
  background-color: var(--bs-white);
}

.order-overview-grid-3 {
  --bs-gutter-y: 0;
}

.order-overview-column {
  height: 100%;
  padding: 0.25rem 0;
}

.order-overview-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.order-overview-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.order-overview-row-label {
  color: var(--bs-secondary-color);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.order-overview-row-value {
  color: var(--bs-body-color);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.4;
}

.order-overview-inline-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--bs-body-color);
  font-size: 0.95rem;
  line-height: 1.45;
}

.order-overview-text-block {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .order-overview-grid-3 > [class*="col-"] + [class*="col-"] .order-overview-column {
    border-left: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
    padding-left: 1.75rem;
    margin-left: 1.75rem;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .order-overview-grid-3 > [class*="col-"]:nth-child(n+2) .order-overview-column {
    border-top: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
    padding-top: 1.25rem;
    margin-top: 1.25rem;
  }

  .order-overview-grid-3 > [class*="col-"]:nth-child(3) .order-overview-column {
    border-left: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
    padding-left: 1.5rem;
    margin-left: 1.5rem;
  }
}

.order-supplier-tooltip-trigger:hover,
.order-supplier-tooltip-trigger:focus,
.order-supplier-tooltip-trigger:active {
  transform: none !important;
}

.order-supplier-tooltip-trigger {
  width: 1.1rem;
  height: 1.1rem;
  min-width: 1.1rem;
  min-height: 1.1rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--bs-secondary-color);
  box-shadow: none !important;
}

.order-supplier-tooltip-trigger i {
  font-size: 0.8rem;
}

.tooltip.order-supplier-tooltip .tooltip-inner {
  max-width: 20rem;
  padding: 0.75rem 0.875rem;
  text-align: left;
  border-radius: 0.85rem;
}

@media (max-width: 1199.98px) {
  .order-overview-grid-3 > [class*="col-"] + [class*="col-"] .order-overview-column {
    border-top: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
    padding-top: 1.25rem;
    margin-top: 1.25rem;
  }

  .layout-menu {
    width: 19rem;
    max-width: 90vw;
  }

  .layout-menu .menu-vertical,
  .layout-menu .menu-vertical .menu-block,
  .layout-menu .menu-vertical .menu-inner > .menu-item,
  .layout-menu .menu-vertical .menu-inner > .menu-header {
    width: 19rem;
  }
}

@media (max-width: 767.98px) {
  .layout-navbar.navbar-detached {
    width: 100% !important;
    max-width: none !important;
  }

  .app-scroll-container.container-p-y {
    padding: 0 !important;
  }

  .app-scroll-container > .container-xxl {
    width: 100%;
    max-width: none;
    padding-inline: 0 !important;
  }

  .app-compact-navbar {
    height: 3.25rem !important;
    min-height: 3.25rem;
    align-items: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .app-compact-navbar #navbar-collapse {
    min-width: 0;
    flex: 1 1 auto;
    align-self: auto;
  }

  .app-compact-navbar-chip {
    padding: 0.3rem 0.45rem !important;
    border-radius: 0.75rem;
  }

  .app-compact-navbar .trade-zone-name {
    font-size: 0.65rem;
  }

  .app-compact-navbar .text-muted.small,
  .app-compact-navbar .exchange-rate .small.text-muted,
  .app-compact-navbar .exchange-rate .small.fw-semibold {
    font-size: 0.67rem;
  }

  .app-compact-navbar .trade-zone-name[style] {
    max-width: 58px !important;
  }

  .layout-menu .mobile-account-panel {
    margin: 0.5rem 0;
    list-style: none;
    width: 100%;
  }

  .layout-menu .mobile-account-panel-card {
    padding: 0.9rem;
    border: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
    border-radius: 1rem;
    background: rgba(var(--bs-body-color-rgb), 0.02);
  }

  .layout-menu .mobile-account-panel-title {
    margin-bottom: 0.75rem;
    color: var(--bs-body-color);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
  }

  .layout-menu .mobile-account-panel-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .layout-menu .mobile-account-panel-link {
    min-height: 2.75rem;
    padding-inline: 0.8rem;
    border-radius: 0.85rem;
    background: var(--bs-white);
    border: 1px solid rgba(var(--bs-body-color-rgb), 0.08);
  }

  .layout-menu .mobile-account-panel-link .menu-icon {
    color: var(--bs-primary);
  }

  .layout-menu .mobile-account-panel-link.is-active {
    border-color: rgba(var(--bs-primary-rgb), 0.18);
    background: rgba(var(--bs-primary-rgb), 0.08);
  }

  .layout-menu .mobile-account-menu-separator {
    height: 1px;
    margin: 0.9rem 0.75rem 0.65rem;
    background: rgba(var(--bs-body-color-rgb), 0.08);
    list-style: none;
  }

  .order-overview-heading {
    gap: 0.7rem;
  }

  .order-overview-grid-3 > [class*="col-"]:nth-child(3) .order-overview-column {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
  }
}

.pricelist-items-table tbody tr {
  cursor: default;
}

.pricelist-items-table tbody tr:hover {
  background-color: transparent;
}

.pricelist-item-row-is-problematic {
  background-color: rgba(220, 53, 69, 0.06);
}

.pricelist-item-row-is-problematic:hover {
  background-color: rgba(220, 53, 69, 0.08) !important;
}

.pricelist-table-input-wrap {
  min-width: 0;
}

.pricelist-table-inline-input {
  width: 5.25rem;
  min-width: 5.25rem;
  border-color: rgba(var(--bs-body-color-rgb), 0.1);
  background-color: rgba(var(--bs-body-color-rgb), 0.02);
}

.pricelist-table-inline-input--price {
  width: 7rem;
  min-width: 7rem;
}

.pricelist-table-inline-input:focus {
  background-color: var(--bs-white);
}

.pricelist-missing-product-search .dropdown-menu {
  max-width: min(26rem, 100%);
}

.pricelist-missing-product-search .dropdown-item {
  white-space: normal;
}

.trade-zone-block {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 1rem;
  padding: 0.75rem;
  min-width: 100px;
  text-align: center;
  transition: transform var(--app-transition-base), box-shadow var(--app-transition-base), border-color var(--app-transition-base);
}

.trade-zone-name {
  color: #566a7f;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
}

.trade-zone-time {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.trade-zone-status {
  font-size: 0.75rem;
  font-weight: 500;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .filter-panel {
    width: min(100vw - 1.5rem, 26rem);
  }

  .filter-actions .btn {
    flex: 1 1 auto;
  }

  .trade-zone-block {
    min-width: 80px;
    padding: 0.4rem;
  }
  .trade-zone-name {
    font-size: 0.7rem;
  }
  .trade-zone-time {
    font-size: 0.8rem;
  }
  .trade-zone-status {
    font-size: 0.65rem;
  }
}
.tradezone-split-body.tradezone-split-active {
  flex-direction: row;
  min-height: 0;
  overflow: hidden;
}

.tradezone-products-pane {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}

.tradezone-lots-pane {
  width: min(100%, 450px);
}

.tradezone-lots-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.tradezone-lots-scroll {
  flex: 1 1 auto;
  min-height: 0;
}

@media (max-width: 991.98px) {
  .tradezone-split-body.tradezone-split-active {
    flex-direction: column;
    overflow: hidden;
  }

  .tradezone-split-body.tradezone-split-active .tradezone-products-pane {
    flex: 1 1 0;
    min-height: 0;
  }

  .tradezone-lots-pane {
    border-left: 0 !important;
    max-height: min(50vh, 28rem);
    padding: 0.75rem;
    width: 100%;
  }

  .tradezone-lots-card {
    background-color: var(--bs-white);
    border-radius: var(--bs-border-radius-lg);
    box-shadow:
      0 -0.35rem 1.25rem rgba(0, 0, 0, 0.12),
      0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
    width: 100%;
  }
}

@media (min-width: 992px) {
  .tradezone-lots-pane {
    background-color: var(--bs-white);
    border-left: 1px solid var(--bs-border-color) !important;
    min-height: 0;
    overflow: hidden;
    padding: 0;
  }

  .tradezone-lots-card {
    border-radius: 0;
    box-shadow: none;
  }
}

.pricelist-item-moq {
  width: 75px;
}

.pricelist-item-price {
  width: 120px;
}

.pricelist-item-amount {
  width: 75px;
}

.trade-zone-compact {
  min-width: 90px;
}

.lots-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lotsModalContainer {
    position: relative;
}

.tradezone-stat-icon {
  align-items: center;
  border-radius: 0.5rem;
  display: inline-flex;
  flex-shrink: 0;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.tradezone-stat-icon i {
  font-size: 1.125rem;
}

.modern-data-table .product-name-cell {
  cursor: pointer;
}

.misc-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
}

#newTaskFormContainer textarea {
    resize: none;
}

#parsedResultPanel {
    min-height: 200px;
}

.row-confirmed-full {
    background-color: rgba(40, 167, 69, 0.08);
}

.row-confirmed-partial {
    background-color: rgba(255, 193, 7, 0.08);
}

.row-confirmed-canceled {
    background-color: rgba(220, 53, 69, 0.08);
}

.status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}

.status-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.status-badge {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 4px;
    flex-shrink: 0;
}

.status-waiting {
    background: #fff;
    border: 1px solid #dee2e6;
}

.status-received {
    background: #0dcaf0; /* bg-info */
}

.status-shipped {
    background: #198754; /* bg-success */
}

.modal-xl-custom .modal-dialog {
    max-width: 90vw;
}

.sticky-top-bar {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 0.5rem;
}

.parsing-header {
    background: #f8f9fa;
    margin-bottom: 0;
}

.parsing-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.parsing-header .parsing-row {
    font-weight: bold;
    border-bottom: none;
}

.parsing-row > div {
    padding: 0 0.5rem;
}

.parsing-row .col-check {
    flex: 0 0 50px;
}

.parsing-row .col-original {
    flex: 0 0 200px;
}

.parsing-row .col-product {
    flex: 1 1 200px;
}

.parsing-row .col-spec {
    flex: 0 0 150px;
}

.parsing-row .col-quality {
    flex: 0 0 120px;
}

.parsing-row .col-moq,
.parsing-row .col-quantity {
    flex: 0 0 100px;
    text-align: center;
}

.parsing-row .col-price {
    flex: 0 0 150px;
    text-align: center;
}

.unrecognized {
    background-color: #fff3cd;
    color: #856404;
}

.unrecognized .parsed-item-select {
    pointer-events: none;
    opacity: 0.5;
}
