:root {
  --erp-sidebar: #1f2937;
  --erp-sidebar-dark: #111827;
  --erp-accent: #0d6efd;
  --erp-bg: #f4f6f9;
}

body {
  background: var(--erp-bg);
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.app-sidebar {
  background: var(--erp-sidebar);
  color: #d1d5db;
}

.brand-link {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #fff;
  text-decoration: none;
  background: var(--erp-sidebar-dark);
  font-weight: 700;
}

.sidebar-menu {
  padding: 12px;
}

.sidebar-menu a,
.menu-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: #d1d5db;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 6px;
  margin-bottom: 4px;
  font-size: 14px;
}

.menu-toggle {
  justify-content: space-between;
  border: 0;
  background: transparent;
  appearance: none;
  font-family: inherit;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.menu-toggle span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sidebar-menu a:hover,
.sidebar-menu a.active,
.menu-toggle:hover,
.menu-toggle.active {
  color: #fff;
  background: rgba(13, 110, 253, .9);
}

.menu-group {
  margin-bottom: 4px;
}

.menu-caret {
  font-size: 12px;
  transition: transform .2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-caret {
  transform: rotate(180deg);
}

.submenu {
  margin: 0 0 6px 12px;
  padding: 4px 0 4px 10px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.submenu a {
  padding: 8px 10px;
  font-size: 13px;
}

.submenu .bi-circle {
  font-size: 8px;
}

.app-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  height: 58px;
  background: #fff;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.content-wrapper {
  padding: 18px;
  flex: 1 0 auto;
}

.app-footer {
  min-height: 38px;
  padding: 9px 18px;
  border-top: 1px solid #dee2e6;
  background: #fff;
  color: #6b7280;
  font-size: 12px;
  text-align: center;
}

.stat-card {
  border: 0;
  border-left: 4px solid var(--erp-accent);
  border-radius: 6px;
}

.dashboard-hero {
  border-top: 4px solid #0d6efd !important;
}

.dashboard-mini {
  min-height: 94px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.dashboard-mini span,
.dashboard-kpi-label,
.dashboard-tile span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-mini strong {
  display: block;
  margin-top: 4px;
  color: #111827;
  font-size: 22px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.dashboard-mini small,
.dashboard-kpi-sub {
  color: #6b7280;
  font-size: 12px;
}

.dashboard-kpi {
  min-height: 132px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.dashboard-kpi-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.dashboard-kpi-value {
  margin: 5px 0 2px;
  color: #111827;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.dashboard-section-card {
  border: 1px solid #e5e7eb !important;
}

.dashboard-section-card .card-header {
  min-height: 58px;
  display: flex;
  align-items: center;
}

.dashboard-section-card table {
  font-size: 13px;
}

.dashboard-tile {
  min-height: 104px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f8fafc;
}

.dashboard-tile i {
  display: block;
  color: #475569;
  font-size: 22px;
  margin-bottom: 8px;
}

.dashboard-tile strong {
  display: block;
  margin-top: 4px;
  color: #111827;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.dashboard-tile.tile-good {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.dashboard-tile.tile-good i,
.dashboard-tile.tile-good strong {
  color: #15803d;
}

.dashboard-tile.tile-alert {
  background: #fef2f2;
  border-color: #fecaca;
}

.dashboard-tile.tile-alert i,
.dashboard-tile.tile-alert strong {
  color: #b91c1c;
}

.quick-actions .list-group-item {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.pos-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 16px;
  align-items: start;
}

.pos-page-header {
  min-height: 58px;
}

.pos-top-charge {
  min-width: min(520px, 100%);
  padding: 8px;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pos-top-charge span {
  display: block;
  color: #15803d;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.pos-top-charge strong {
  display: block;
  margin-top: 2px;
  color: #14532d;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.pos-top-charge-button {
  min-width: 132px;
  min-height: 42px;
  color: #fff;
  font-weight: 800;
  background: #198754;
  border-color: #198754;
  box-shadow: 0 5px 14px rgba(25, 135, 84, .25);
}

.pos-top-charge-button:hover,
.pos-top-charge-button:focus {
  color: #fff;
  background: #157347;
  border-color: #146c43;
}

.pos-hero {
  border-top: 4px solid #0d6efd !important;
}

.pos-cash-status {
  min-height: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.pos-cash-status > i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  background: #dbeafe;
  font-size: 17px;
}

.pos-cash-status strong {
  color: #111827;
  font-size: 14px;
}

.pos-hero-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  background: #dbeafe;
  font-size: 24px;
}

.pos-shortcuts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.pos-shortcuts span {
  min-height: 26px;
  padding: 4px 7px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #f8fafc;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
}

.pos-shortcuts strong {
  color: #111827;
}

.pos-shortcuts .shortcut-charge {
  color: #fff;
  background: #198754;
  border-color: #198754;
  box-shadow: 0 2px 6px rgba(25, 135, 84, .28);
}

.pos-shortcuts .shortcut-charge strong {
  color: #fff;
}

.pos-products-card,
.pos-summary-card {
  border: 1px solid #e5e7eb !important;
}

.pos-products-card .card-header {
  position: relative;
  z-index: 2;
}

.pos-search-box {
  position: relative;
}

.pos-search-group .form-control {
  font-weight: 600;
}

.pos-results {
  position: absolute;
  z-index: 20;
  width: 100%;
  margin-top: 4px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .18);
  border-radius: 8px;
  overflow: hidden;
}

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

.pos-result-item small {
  display: block;
  color: #6b7280;
}

.pos-cart-toolbar {
  min-height: 50px;
  padding: 10px 14px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pos-sale-table {
  font-size: 13px;
}

.pos-sale-table th {
  white-space: nowrap;
}

.pos-sale-table td:first-child {
  min-width: 260px;
}

.pos-sale-table .sale-qty {
  min-width: 96px;
}

.pos-sale-table .sale-price {
  min-width: 112px;
}

.pos-summary-card {
  position: sticky;
  top: 76px;
}

.pos-summary-card .card-header {
  min-height: 58px;
  display: flex;
  align-items: center;
}

.pos-total-box {
  padding: 14px;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  background: #f0fdf4;
}

.pos-total-box span {
  display: block;
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pos-total-box strong {
  display: block;
  margin-top: 4px;
  color: #14532d;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.pos-credit-box {
  background: #f8fafc;
}

.pos-tax-lines {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
}

.pos-tax-lines div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  color: #6b7280;
}

.pos-tax-lines strong {
  color: #111827;
}

.pos-charge-button {
  min-height: 52px;
  font-weight: 800;
  color: #fff;
  background: #198754;
  border-color: #198754;
  box-shadow: 0 6px 16px rgba(25, 135, 84, .28);
}

.pos-charge-button:hover,
.pos-charge-button:focus {
  color: #fff;
  background: #157347;
  border-color: #146c43;
}

.pos-payment-modal .modal-header {
  border-bottom: 1px solid #e5e7eb;
}

.payment-total-box,
.payment-change-box {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}

.payment-total-box span,
.payment-change-box span {
  display: block;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.payment-total-box strong,
.payment-change-box strong {
  display: block;
  margin-top: 5px;
  color: #111827;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.payment-total-box {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.payment-total-box strong {
  color: #1d4ed8;
}

.payment-change-box {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.payment-change-box strong {
  color: #15803d;
}

.payment-change-box strong.text-danger {
  color: #b91c1c !important;
}

.client-results {
  max-height: 360px;
  overflow: auto;
}

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

.client-result-item span {
  font-size: 13px;
}

.xml-preview {
  max-height: 70vh;
  overflow: auto;
  padding: 14px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background: #0f172a;
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.xml-response {
  max-height: 240px;
  overflow: auto;
  padding: 12px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background: #f8f9fa;
  color: #212529;
  font-size: 12px;
  white-space: pre-wrap;
  word-break: break-word;
}

.report-filter-card {
  border-left: 4px solid #64748b !important;
}

.report-hero {
  border-top: 4px solid #0d6efd !important;
}

.report-hero-sales {
  border-top-color: #198754 !important;
}

.report-hero-purchases {
  border-top-color: #d97706 !important;
}

.report-kpi {
  min-height: 128px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.report-kpi-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.report-kpi-label {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.report-kpi-value {
  color: #111827;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.report-section-card {
  border: 1px solid #e5e7eb !important;
}

.report-section-card .card-header {
  min-height: 58px;
  display: flex;
  align-items: center;
}

.report-section-card table {
  font-size: 13px;
}

.finance-hero {
  border-top: 4px solid #0d6efd !important;
}

.finance-kpi {
  min-height: 132px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.finance-kpi-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.finance-kpi-label {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.finance-kpi-value {
  color: #111827;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.kpi-neutral .finance-kpi-icon {
  color: #334155;
  background: #e2e8f0;
}

.kpi-neutral .report-kpi-icon {
  color: #334155;
  background: #e2e8f0;
}

.kpi-neutral .dashboard-kpi-icon {
  color: #334155;
  background: #e2e8f0;
}

.kpi-bank .finance-kpi-icon {
  color: #1d4ed8;
  background: #dbeafe;
}

.kpi-bank .report-kpi-icon {
  color: #1d4ed8;
  background: #dbeafe;
}

.kpi-bank .dashboard-kpi-icon {
  color: #1d4ed8;
  background: #dbeafe;
}

.kpi-available .finance-kpi-icon {
  color: #047857;
  background: #d1fae5;
}

.kpi-income .finance-kpi-icon {
  color: #0369a1;
  background: #e0f2fe;
}

.kpi-income .report-kpi-icon {
  color: #0369a1;
  background: #e0f2fe;
}

.kpi-income .dashboard-kpi-icon {
  color: #0369a1;
  background: #e0f2fe;
}

.kpi-expense .finance-kpi-icon,
.kpi-danger .finance-kpi-icon {
  color: #b91c1c;
  background: #fee2e2;
}

.kpi-expense .report-kpi-icon,
.kpi-danger .report-kpi-icon {
  color: #b91c1c;
  background: #fee2e2;
}

.kpi-expense .dashboard-kpi-icon,
.kpi-danger .dashboard-kpi-icon {
  color: #b91c1c;
  background: #fee2e2;
}

.kpi-success .finance-kpi-icon {
  color: #15803d;
  background: #dcfce7;
}

.kpi-success .report-kpi-icon {
  color: #15803d;
  background: #dcfce7;
}

.kpi-success .dashboard-kpi-icon {
  color: #15803d;
  background: #dcfce7;
}

.kpi-expense .finance-kpi-value,
.kpi-danger .finance-kpi-value {
  color: #b91c1c;
}

.kpi-expense .report-kpi-value,
.kpi-danger .report-kpi-value {
  color: #b91c1c;
}

.kpi-expense .dashboard-kpi-value,
.kpi-danger .dashboard-kpi-value {
  color: #b91c1c;
}

.kpi-success .finance-kpi-value {
  color: #15803d;
}

.kpi-success .report-kpi-value {
  color: #15803d;
}

.kpi-success .dashboard-kpi-value {
  color: #15803d;
}

.finance-section-card {
  border: 1px solid #e5e7eb !important;
}

.finance-section-card .card-header {
  min-height: 58px;
  display: flex;
  align-items: center;
}

.finance-section-card table {
  font-size: 13px;
}

.mini-metric {
  border-radius: 8px;
  padding: 10px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.mini-metric span {
  display: block;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mini-metric strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.mini-metric.positive strong {
  color: #15803d;
}

.mini-metric.negative strong {
  color: #b91c1c;
}

.operational-hero {
  border-top: 4px solid #0d6efd !important;
}

.operational-kpi {
  min-height: 132px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.operational-kpi-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.operational-kpi span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.operational-kpi strong {
  color: #111827;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.operational-kpi small {
  color: #6b7280;
  font-size: 12px;
}

.kpi-neutral .operational-kpi-icon {
  color: #334155;
  background: #e2e8f0;
}

.kpi-bank .operational-kpi-icon {
  color: #1d4ed8;
  background: #dbeafe;
}

.kpi-income .operational-kpi-icon {
  color: #0369a1;
  background: #e0f2fe;
}

.kpi-expense .operational-kpi-icon,
.kpi-danger .operational-kpi-icon {
  color: #b91c1c;
  background: #fee2e2;
}

.kpi-success .operational-kpi-icon {
  color: #15803d;
  background: #dcfce7;
}

.kpi-expense .operational-kpi strong,
.kpi-danger .operational-kpi strong {
  color: #b91c1c;
}

.kpi-success .operational-kpi strong {
  color: #15803d;
}

.operational-section-card {
  border: 1px solid #e5e7eb !important;
}

.operational-section-card .card-header {
  min-height: 58px;
  display: flex;
  align-items: center;
}

.operational-table {
  font-size: 13px;
}

.operational-table th {
  white-space: nowrap;
}

.rank-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: 12px;
  font-weight: 800;
}

.product-thumb {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}

.product-thumb-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 18px;
}


.cash-close-hero {
  border: 1px solid #dbeafe !important;
  border-top: 4px solid #0d6efd !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.cash-eyebrow {
  color: #0d6efd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cash-hero-total {
  color: #111827;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
}

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

.cash-kpi {
  min-height: 86px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cash-kpi span,
.cash-meta-grid span,
.cash-table-card .card-header small {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.cash-kpi strong {
  color: #111827;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.cash-kpi-success strong {
  color: #15803d;
}

.cash-kpi-danger strong {
  color: #b91c1c;
}

.cash-kpi-primary strong {
  color: #0d6efd;
}

.cash-meta-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.cash-meta-grid div {
  min-width: 0;
}

.cash-meta-grid strong {
  display: block;
  color: #111827;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.cash-table-card {
  border: 1px solid #e5e7eb !important;
}

.cash-table-card .card-header {
  min-height: 58px;
  display: flex;
  align-items: center;
}

.cash-table-card .card-header strong,
.cash-table-card .card-header small {
  display: block;
}

.cash-table-card table {
  font-size: 13px;
}

.cash-table-card th {
  color: #374151;
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 1199.98px) {
  .cash-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cash-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .cash-kpi-grid,
  .cash-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cash-hero-total {
    font-size: 24px;
  }
}
@media print {
  .no-print,
  .app-sidebar,
  .topbar,
  .app-footer {
    display: none !important;
  }

  .app-shell {
    display: block;
  }

  .content-wrapper {
    padding: 0;
  }

  .sale-receipt,
  .quote-receipt,
  .purchase-receipt,
  .payment-receipt,
  .cash-closing-receipt,
  .sales-report,
  .purchases-report,
  .financial-report {
    border: 0 !important;
    box-shadow: none !important;
  }

  .print-ticket .content-wrapper {
    width: 80mm;
    margin: 0 auto;
  }

  .print-ticket .sale-receipt {
    width: 80mm;
    font-size: 11px;
  }

  .print-ticket .sale-receipt .card-body {
    padding: 0;
  }

  .print-ticket .sale-receipt h2,
  .print-ticket .sale-receipt .fs-4,
  .print-ticket .sale-receipt .fs-5 {
    font-size: 14px !important;
  }

  .print-ticket .sale-receipt table {
    font-size: 11px;
    table-layout: fixed;
    width: 100%;
  }

  .print-ticket .sale-receipt th,
  .print-ticket .sale-receipt td {
    padding-left: 3px;
    padding-right: 3px;
    white-space: nowrap;
  }

  .print-ticket .sale-receipt .ticket-product-col {
    width: 38%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .print-ticket .sale-receipt .ticket-qty-col {
    width: 17%;
  }

  .print-ticket .sale-receipt .ticket-price-col {
    width: 18%;
  }

  .print-ticket .sale-receipt .ticket-subtotal-col {
    width: 27%;
    padding-right: 0;
    text-align: right !important;
  }

  .print-ticket .sale-receipt th:last-child,
  .print-ticket .sale-receipt td:last-child {
    padding-right: 0;
    text-align: right !important;
  }

  .print-ticket .ticket-hide {
    display: none !important;
  }

  .report-kpi,
  .report-section-card,
  .dashboard-kpi,
  .dashboard-mini,
  .dashboard-tile,
  .dashboard-section-card,
  .finance-kpi,
  .mini-metric,
  .finance-section-card,
  .operational-kpi,
  .operational-section-card {
    border: 1px solid #dee2e6 !important;
    background: #fff !important;
  }
}

@media (max-width: 992px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

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

  .pos-top-charge {
    order: 3;
    flex: 1 1 100%;
  }

  .pos-summary-card {
    position: static;
  }

  .pos-shortcuts {
    justify-content: flex-start;
  }
}

