:root {
  --c-bg: #f4f6f9;
  --c-surface: #ffffff;
  --c-surface-2: #eef1f6;
  --c-border: #dde1eb;
  --c-text: #1a1f2e;
  --c-text-muted: #6b7280;
  --c-text-inv: #ffffff;

  --c-primary: #1d4ed8;
  --c-primary-h: #1e40af;
  --c-primary-lt: #dbeafe;
  --c-accent: #f59e0b;
  --c-accent-h: #d97706;
  --c-success: #059669;
  --c-success-lt: #d1fae5;
  --c-danger: #dc2626;
  --c-danger-lt: #fee2e2;
  --c-warning: #d97706;
  --c-warning-lt: #fef3c7;
  --c-info: #0891b2;
  --c-info-lt: #cffafe;

  --c-grad-1: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  --c-grad-2: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --c-grad-3: linear-gradient(135deg, #059669 0%, #047857 100%);
  --c-grad-4: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  --c-grad-hero: linear-gradient(135deg, #0f172a 0%, #1d4ed8 50%, #1e40af 100%);

  --c-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  --c-shadow-md: 0 4px 16px rgba(0, 0, 0, .12);
  --c-shadow-lg: 0 8px 32px rgba(0, 0, 0, .16);

  --topbar-h: 62px;
  --nav-h: 48px;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --transition: .2s ease;
  --font-ui: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --bs-card-color: rgb(33, 37, 41);
}

[data-bs-theme="dark"] {
  --c-bg: #1a1f2e;
  --bs-body-bg: #1a1f2e;
  --bs-table-bg: #1a1f2e;
  --c-surface: #1a1f2e;
  --c-surface-2: #252b3b;
  --c-border: #2d3348;
  --c-text: #e2e8f0;
  --c-text-muted: #8892a4;
  --c-text-inv: #0f1117;
  --c-primary: #3b82f6;
  --c-primary-h: #60a5fa;
  --c-primary-lt: #1e3a5f;
  --c-accent: #fbbf24;
  --c-success-lt: #064e3b;
  --c-danger-lt: #7f1d1d;
  --c-warning-lt: #78350f;
  --c-info-lt: #0c4a6e;
  --c-shadow: 0 2px 8px rgba(0, 0, 0, .3);
  --c-shadow-md: 0 4px 16px rgba(0, 0, 0, .4);
  --c-shadow-lg: 0 8px 32px rgba(0, 0, 0, .5);
}


body[data-bs-theme="dark"] .alertify .ajs-dialog,
body[data-bs-theme="dark"] .alertify .ajs-header,
body[data-bs-theme="dark"] .alertify .ajs-footer,
body[data-bs-theme="dark"] .alertify .ajs-content,
body[data-bs-theme="dark"] .alertify .ajs-body {
  background: #1e1e1e !important;
  color: #ddd !important;
  border: 1px solid #404040 !important;
}

body[data-bs-theme="dark"] .alertify pre {
  background: #2d2d2d !important;
  color: inherit !important;
}

.alertify pre {
  font-size: 12px;
  line-height: 1.4;
  padding: 10px;
  border-radius: 6px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../webfonts/inter-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../webfonts/inter-600.woff2') format('woff2');
}

body {
  font-family: var(--font-ui);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

/* ── Preloader ── */
#app-preloader {
  position: fixed;
  inset: 0;
  background: var(--c-grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .5s, visibility .5s;
}

#app-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-size: 48px;
  color: var(--c-accent);
  margin-bottom: 24px;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 20px;
}

.preloader-bars span {
  width: 6px;
  height: 32px;
  background: rgba(255, 255, 255, .3);
  border-radius: 3px;
  animation: bar-bounce .8s ease-in-out infinite;
}

.preloader-bars span:nth-child(1) {
  animation-delay: 0s;
}

.preloader-bars span:nth-child(2) {
  animation-delay: .1s;
}

.preloader-bars span:nth-child(3) {
  animation-delay: .2s;
  background: var(--c-accent);
}

.preloader-bars span:nth-child(4) {
  animation-delay: .3s;
}

.preloader-bars span:nth-child(5) {
  animation-delay: .4s;
}

.preloader-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
}

@keyframes bar-bounce {

  0%,
  100% {
    transform: scaleY(1);
    opacity: .4;
  }

  50% {
    transform: scaleY(1.8);
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.1)
  }
}

/* ── Topbar ── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--topbar-h);
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  box-shadow: var(--c-shadow);
  transition: background var(--transition), border-color var(--transition);
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}

.brand-logo {
  width: 38px;
  height: 38px;
  background: var(--c-grad-1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.brand-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

.brand-sub {
  font-size: 10px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Top Navigation ── */
.topnav {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  flex: 1;
  scrollbar-width: none;
}

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

.topnav .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
}

.topnav .nav-link:hover,
.topnav .nav-link.active {
  background: var(--c-primary-lt);
  color: var(--c-primary);
}

.topnav .nav-link i {
  font-size: 12px;
}

/* ── Topbar Actions ── */
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--c-border);
  background: var(--c-surface-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-text);
  font-size: 14px;
  transition: all var(--transition);
}

.btn-icon:hover {
  background: var(--c-primary);
  color: white;
  border-color: var(--c-primary);
}

/* ── Profile Dropdown ── */
.profile-dropdown {
  position: relative;
}

.profile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--c-shadow-md);
  min-width: 180px;
  overflow: hidden;
  z-index: 2000;
}

.profile-menu.show {
  display: block;
}

.profile-header {
  padding: 12px 16px;
  background: var(--c-surface-2);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
}

.profile-header strong {
  font-size: 13px;
}

.profile-header small {
  color: var(--c-text-muted);
  font-size: 11px;
}

.profile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--c-text);
  text-decoration: none;
  font-size: 13px;
  transition: background var(--transition);
}

.profile-menu a:hover {
  background: var(--c-surface-2);
}

.profile-menu a i {
  width: 16px;
  color: var(--c-text-muted);
}

/* ── Page Content ── */
.page-content {
  margin-top: calc(var(--topbar-h) + var(--nav-h));
  padding: 24px;
  min-height: calc(100vh - var(--topbar-h));
}

/* Wait — topnav is in topbar, so subtract only topbar */
.page-content {
  margin-top: var(--topbar-h);
}

/* ── Page Loader ── */
.page-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: var(--c-text-muted);
  font-size: 32px;
}

.page-loader.hidden {
  display: none;
}

/* ── Cards ── */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--c-shadow);
  transition: background var(--transition), border-color var(--transition);
}

.card-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header h5,
.card-header h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.card-body {
  padding: 20px;
}

.card-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--c-border);
  background: var(--c-surface-2);
  border-radius: 0 0 var(--radius) var(--radius);
}

/* Stat cards */
.stat-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--c-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--c-shadow-md);
}

.stat-card .stat-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.stat-card .stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.stat-card .stat-value {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.stat-card .stat-sub {
  font-size: 12px;
  color: var(--c-text-muted);
}

.stat-card.primary {
  border-left: 4px solid var(--c-primary);
}

.stat-card.success {
  border-left: 4px solid var(--c-success);
}

.stat-card.accent {
  border-left: 4px solid var(--c-accent);
}

.stat-card.danger {
  border-left: 4px solid var(--c-danger);
}

/* ── Forms ── */
.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 5px;
  display: block;
}

.form-control,
.form-select {
  width: 100%;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13.5px;
  color: var(--c-text);
  font-family: var(--font-ui);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, .15);
  outline: none;
  background: var(--c-surface);
}

.form-control[readonly],
.form-control:disabled {
  background: var(--c-surface-2);
  color: var(--c-text-muted);
  cursor: not-allowed;
}

.form-control.is-invalid {
  border-color: var(--c-danger);
}

.form-control.is-valid {
  border-color: var(--c-success);
}

.invalid-feedback {
  color: var(--c-danger);
  font-size: 12px;
  margin-top: 4px;
}

/* Tags input */
.tags-container {
  min-height: 44px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  cursor: text;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--c-primary-lt);
  color: var(--c-primary);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.tag-remove {
  cursor: pointer;
  font-size: 10px;
  opacity: .7;
}

.tag-remove:hover {
  opacity: 1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-ui);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn i {
  font-size: 12px;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--c-primary);
  color: white;
  border-color: var(--c-primary);
}

.btn-primary:hover {
  background: var(--c-primary-h);
  border-color: var(--c-primary-h);
}

.btn-secondary {
  background: var(--c-surface-2);
  color: var(--c-text);
  border-color: var(--c-border);
}

.btn-secondary:hover {
  background: var(--c-border);
}

.btn-success {
  background: var(--c-success);
  color: white;
  border-color: var(--c-success);
}

.btn-danger {
  background: var(--c-danger);
  color: white;
  border-color: var(--c-danger);
}

.btn-warning {
  background: var(--c-accent);
  color: white;
  border-color: var(--c-accent);
}

.btn-sm {
  padding: 5px 12px;
  font-size: 12px;
}

.btn-xs {
  padding: 3px 8px;
  font-size: 11px;
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
}

.badge-success {
  background: var(--c-success-lt);
  color: var(--c-success);
}

.badge-danger {
  background: var(--c-danger-lt);
  color: var(--c-danger);
}

.badge-warning {
  background: var(--c-warning-lt);
  color: var(--c-warning);
}

.badge-primary {
  background: var(--c-primary-lt);
  color: var(--c-primary);
}

.badge-info {
  background: var(--c-info-lt);
  color: var(--c-info);
}

.badge-muted {
  background: var(--c-surface-2);
  color: var(--c-text-muted);
}

/* ── Navigation ── */
.page-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.page-title h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}

.page-title .page-subtitle {
  font-size: 13px;
  color: var(--c-text-muted);
}

/* ── DataTable ── */
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  padding: 5px 10px;
  font-family: var(--font-ui);
  font-size: 13px;
}

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
  font-size: 12px;
  color: var(--c-text-muted);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: var(--radius-sm) !important;
  font-size: 12px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--c-primary) !important;
  border-color: var(--c-primary) !important;
  color: white !important;
}

table.dataTable thead th {
  background: var(--c-surface-2);
  color: var(--c-text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--c-border) !important;
}

table.dataTable tbody tr {
  transition: background var(--transition);
}

table.dataTable tbody tr:hover {
  background: var(--c-surface-2) !important;
}

table.dataTable tbody td {
  border-color: var(--c-border) !important;
  color: var(--c-text);
  vertical-align: middle;
}

/* ── Modals ── */
.modal-content {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--c-shadow-lg);
}

.modal-header {
  border-bottom: 1px solid var(--c-border);
  padding: 16px 20px;
}

.modal-header .modal-title {
  font-size: 16px;
  font-weight: 700;
}

.modal-footer {
  border-top: 1px solid var(--c-border);
  padding: 12px 20px;
}

.modal-body {
  padding: 20px;
}

/* ── Alerts / Toast ── */
.alertify-notifier .ajs-message {
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-ui) !important;
  font-size: 13px !important;
}

/* ── Search Dropdown ── */
.search-dropdown {
  position: absolute;
  z-index: 1050;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--c-shadow-md);
  max-height: 280px;
  overflow-y: auto;
  width: 100%;
  display: none;
}

.search-dropdown.show {
  display: block;
}

.search-dropdown-item {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition);
}

.search-dropdown-item:last-child {
  border-bottom: none;
}

.search-dropdown-item:hover,
.search-dropdown-item.active {
  background: var(--c-primary-lt);
}

.search-dropdown-item .item-code {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-primary);
  font-family: var(--font-mono);
}

.search-dropdown-item .item-desc {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Invoice Items Table ── */
.invoice-items-table {
  width: 100%;
  border-collapse: collapse;
}

.invoice-items-table th {
  background: var(--c-surface-2);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 10px 8px;
  border: 1px solid var(--c-border);
}

.invoice-items-table td {
  padding: 8px;
  border: 1px solid var(--c-border);
  vertical-align: middle;
}

.invoice-items-table .row-2 td {
  background: var(--c-surface-2);
}

.invoice-items-table .form-control,
.invoice-items-table .form-select {
  min-width: 80px;
}

/* ── API Response ── */
.api-response {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: var(--radius);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  max-height: 400px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-all;
}

/* ── Login Page ── */
.auth-page {
  min-height: 100vh;
  background: var(--c-grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--c-shadow-lg);
}

.auth-logo {
  text-align: center;
  margin-bottom: 24px;
}

.auth-logo .logo-icon {
  width: 64px;
  height: 64px;
  background: var(--c-grad-1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin: 0 auto 12px;
}

.auth-logo h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

.auth-logo p {
  color: var(--c-text-muted);
  font-size: 13px;
}

/* ── Utilities ── */
.text-primary {
  color: var(--c-primary);
}

.text-muted {
  color: var(--c-text-muted);
}

.text-success {
  color: var(--c-success);
}

.text-danger {
  color: var(--c-danger);
}

.text-accent {
  color: var(--c-accent);
}

.bg-primary-lt {
  background: var(--c-primary-lt);
}

.bg-success-lt {
  background: var(--c-success-lt);
}

.bg-danger-lt {
  background: var(--c-danger-lt);
}

.fw-800 {
  font-weight: 800;
}

.font-mono {
  font-family: var(--font-mono);
}

.separator {
  height: 1px;
  background: var(--c-border);
  margin: 16px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--c-text-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .topnav {
    display: none;
  }

  .page-content {
    padding: 12px;
  }

  .auth-card {
    padding: 24px;
  }
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--c-surface-2);
}

::-webkit-scrollbar-thumb {
  background: var(--c-border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-primary);
}

/* ── HTMX indicator ── */
.htmx-indicator {
  display: none;
}

.htmx-request .htmx-indicator {
  display: inline-block;
}

/* ── Dropdown ── */
.dropdown-menu {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--c-shadow-md);
}

.dropdown-item {
  color: var(--c-text);
  font-size: 13px;
  padding: 8px 16px;
}

.dropdown-item:hover {
  background: var(--c-surface-2);
  color: var(--c-text);
}

.dropdown-divider {
  border-color: var(--c-border);
}

.input-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  min-height: 32px;
}

.input-chip .chip-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.input-chip .chip-title {
  font-weight: 600;
}

.input-chip .chip-sub {
  font-size: 11px;
  color: var(--c-text-muted);
}

.input-chip .remove-chip {
  cursor: pointer;
  color: var(--c-danger);
  margin-left: 10px;
  opacity: 0.7;
}

.input-chip .remove-chip:hover {
  opacity: 1;
}

/* dropdown generic */
.search-dropdown {
  position: absolute;
  z-index: 9999;
  width: 100%;
  max-height: 240px;
  overflow-y: auto;
}

/* fix stacking issues */
.table-responsive {
  overflow: visible;
}

.cursor-pointer {
  cursor: pointer;
}

/* ── Invoice Print ── */
@media print {

  .topbar,
  .topnav,
  .no-print {
    display: none !important;
  }

  .page-content {
    margin: 0 !important;
    padding: 0 !important;
  }
}