/* ==========================================================================
   AJATH CLOUD ERP & ACCOUNTING - FULLY RESPONSIVE DESIGN SYSTEM
   Desktop, Laptop, Tablet, Mobile & TV/4K Display Architecture
   100% Original Implementation • Double-Entry Workflow Engine
   ========================================================================== */

:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --primary-subtle: rgba(79, 70, 229, 0.08);
    --sidebar-bg: #0f172a;
    --sidebar-color: #94a3b8;
    --sidebar-active-bg: #1e293b;
    --sidebar-active-color: #ffffff;
    --sidebar-width: 260px;
    --topbar-height: 64px;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --border-color: #e2e8f0;
    --app-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --debit-color: #dc2626;
    --credit-color: #059669;
}

[data-bs-theme="dark"] {
    --sidebar-bg: #090d16;
    --sidebar-color: #94a3b8;
    --sidebar-active-bg: #1e293b;
    --sidebar-active-color: #ffffff;
    --border-color: #263345;
    --app-bg: #0b1120;
    --card-bg: #131b2e;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--app-bg);
    color: var(--text-main);
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
}

/* Tabular figures for accounting numbers */
.num-align, table td.amount, .stat-value, .balance-pill {
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum';
    text-align: right;
}

/* ==========================================================================
   LAYOUT ARCHITECTURE (Mobile, Tablet, Desktop, TV)
   ========================================================================== */

.app-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    color: var(--sidebar-color);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), width 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    z-index: 1045;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.sidebar-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.sidebar-brand {
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.18);
}

.sidebar-brand a {
    color: #ffffff;
    text-decoration: none;
}

.sidebar-brand i {
    color: #818cf8;
}

.sidebar-menu {
    flex: 1;
    overflow-y: auto;
    padding: 0.85rem 0.65rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.sidebar-menu::-webkit-scrollbar {
    width: 5px;
}
.sidebar-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.sidebar-section-title {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    font-weight: 700;
    color: #64748b;
    padding: 0.75rem 0.75rem 0.35rem;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    padding: 0.55rem 0.75rem;
    color: var(--sidebar-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 500;
    transition: all 0.15s ease;
    margin-bottom: 2px;
}

.sidebar-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.sidebar-nav-link.active {
    color: #ffffff;
    background: var(--primary-color);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.35);
}

.sidebar-nav-link i {
    width: 22px;
    font-size: 0.95rem;
    margin-right: 0.6rem;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-nav-link span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-nav-link .badge-shortcut {
    margin-left: auto;
    font-size: 0.62rem;
    padding: 2px 5px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: #cbd5e1;
    font-weight: 600;
    flex-shrink: 0;
}

/* Main Content Wrapper */
.main-content-wrapper {
    margin-left: var(--sidebar-width);
    flex: 1;
    width: calc(100% - var(--sidebar-width));
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left 0.25s cubic-bezier(0.4, 0, 0.2, 1), width 0.25s ease;
    overflow-x: hidden;
}

/* ==========================================================================
   TOPBAR NAVIGATION
   ========================================================================== */

.topbar {
    height: var(--topbar-height);
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    gap: 0.75rem;
    width: 100%;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 1;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.search-trigger-btn {
    background: var(--app-bg);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    border-radius: 8px;
    padding: 0.42rem 0.85rem;
    font-size: 0.84rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    min-width: 180px;
    max-width: 280px;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.search-trigger-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.search-trigger-btn kbd {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.68rem;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: auto;
}

.company-fy-selector {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 1;
    min-width: 0;
}

.active-context-pill {
    background: var(--primary-subtle);
    border: 1px solid rgba(79, 70, 229, 0.22);
    color: var(--primary-color);
    border-radius: 6px;
    padding: 0.32rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.15s ease;
    white-space: nowrap;
    text-decoration: none;
}

.active-context-pill span {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.active-context-pill:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* ==========================================================================
   KEYBOARD SHORTCUTS RIBBON (FAST KEYS)
   ========================================================================== */

.quick-shortcuts-bar {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 0.45rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.quick-shortcuts-bar::-webkit-scrollbar {
    display: none;
}

.quick-shortcuts-label {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 0.25rem;
}

.quick-voucher-btn {
    padding: 0.28rem 0.55rem;
    font-size: 0.76rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--border-color);
    background: var(--app-bg);
    color: var(--text-main);
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.quick-voucher-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--primary-subtle);
}

/* Ultra-high contrast kbd badge on all screens */
.quick-voucher-btn kbd {
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 5px;
    background: #0f172a;
    color: #38bdf8;
    border: 1px solid #334155;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.03em;
    display: inline-block;
    line-height: 1.1;
}

[data-bs-theme="dark"] .quick-voucher-btn kbd {
    background: #020617;
    color: #7dd3fc;
    border-color: #1e293b;
}

/* ==========================================================================
   CARDS & DASHBOARD FINANCIAL METRICS
   ========================================================================== */

.card-modern {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    min-width: 0;
}

.card-modern:hover {
    box-shadow: var(--card-shadow-hover);
}

.stat-card {
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 12px 12px 0 0;
}

.stat-card.accent-sales::before { background: linear-gradient(90deg, #4f46e5, #818cf8); }
.stat-card.accent-purchases::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.stat-card.accent-receivables::before { background: linear-gradient(90deg, #ef4444, #f87171); }
.stat-card.accent-liquid::before { background: linear-gradient(90deg, #10b981, #34d399); }

.stat-card .stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.stat-card .stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-card .stat-value {
    font-size: clamp(1.15rem, 1.35vw, 1.55rem);
    font-weight: 800;
    margin: 0.25rem 0;
    color: var(--text-main);
    line-height: 1.2;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Doughnut Chart Center Metrics */
.doughnut-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doughnut-center-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    text-align: center;
    pointer-events: none;
}

.doughnut-center-number {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.doughnut-center-text {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}

/* Dashboard Transactions Table */
.dashboard-table-compact {
    font-size: 0.84rem;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.dashboard-table-compact th {
    padding: 0.55rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--app-bg);
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.dashboard-table-compact td {
    padding: 0.55rem 0.65rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.hotkey-list-item {
    transition: all 0.15s ease;
    border-radius: 8px;
    padding: 0.45rem 0.75rem !important;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.82rem;
}

.hotkey-list-item:hover {
    background: var(--primary-subtle);
    color: var(--primary-color);
}

/* Responsive Charts Container */
.chart-container-responsive {
    position: relative;
    height: 280px;
    width: 100%;
}

/* ==========================================================================
   VOUCHER ENTRY & ACCOUNTING GRIDS
   ========================================================================== */

.voucher-grid-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    min-width: 680px;
}

.voucher-grid-table th {
    background: var(--app-bg);
    color: var(--text-muted);
    font-size: 0.74rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.voucher-grid-table td {
    padding: 0.4rem 0.5rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.voucher-input {
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-main);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.voucher-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-subtle);
    outline: none;
}

.voucher-balance-bar {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.balance-status-badge {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
}

.balance-status-badge.balanced {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.balance-status-badge.unbalanced {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   SPOTLIGHT SEARCH PALETTE
   ========================================================================== */

.spotlight-modal .modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.spotlight-input-wrapper {
    position: relative;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.spotlight-input {
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: var(--text-main);
    width: 100%;
    outline: none;
    padding-left: 0.75rem;
}

.spotlight-results {
    max-height: 380px;
    overflow-y: auto;
    padding: 0.5rem;
}

.spotlight-item {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-main);
    gap: 0.75rem;
    transition: all 0.12s ease;
}

.spotlight-item:hover, .spotlight-item.active {
    background: var(--primary-subtle);
    color: var(--primary-color);
}

.spotlight-category-header {
    font-size: 0.68rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    padding: 0.5rem 0.85rem 0.25rem;
}

/* ==========================================================================
   POS COUNTER SCREEN
   ========================================================================== */

.pos-screen {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    min-height: calc(100vh - var(--topbar-height) - 100px);
}

.pos-cart-panel {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pos-cart-items {
    flex: 1;
    overflow-y: auto;
}

.pos-cart-summary {
    background: var(--app-bg);
    border-top: 1px solid var(--border-color);
    padding: 1.25rem;
}

/* Responsive Table Wrapper */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-bottom: 0;
}

/* ==========================================================================
   DEVICE-SPECIFIC RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* 1. Mobile Phones (Portrait & Landscape: < 768px) */
@media (max-width: 767.98px) {
    :root {
        --sidebar-width: 270px;
        --topbar-height: 58px;
    }

    .sidebar {
        transform: translateX(-100%);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    }

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

    .main-content-wrapper {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .topbar {
        padding: 0 0.75rem;
    }

    .search-trigger-btn {
        min-width: 40px;
        width: 40px;
        height: 36px;
        padding: 0;
        justify-content: center;
        border-radius: 8px;
    }

    .search-trigger-btn span,
    .search-trigger-btn kbd {
        display: none !important;
    }

    .company-fy-selector {
        display: none !important;
    }

    .quick-shortcuts-bar {
        padding: 0.4rem 0.75rem;
        gap: 0.35rem;
    }

    .quick-shortcuts-label {
        display: none;
    }

    .quick-voucher-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.72rem;
    }

    .quick-voucher-btn kbd {
        font-size: 0.62rem;
        padding: 1px 4px;
    }

    main {
        padding: 0.75rem !important;
    }

    .stat-card {
        padding: 1rem;
    }

    .chart-container-responsive {
        height: 240px;
    }

    .pos-screen {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
}

/* 2. Tablet Portrait (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    :root {
        --sidebar-width: 260px;
    }

    .sidebar {
        transform: translateX(-100%);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    }

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

    .main-content-wrapper {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .search-trigger-btn {
        min-width: 150px;
        max-width: 180px;
    }

    .active-context-pill span {
        max-width: 100px;
    }

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

    .chart-container-responsive {
        height: 260px;
    }
}

/* 3. Small Laptop / Tablet Landscape (992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    :root {
        --sidebar-width: 230px;
    }

    .sidebar-brand {
        padding: 0 1rem;
        font-size: 1.05rem;
    }

    .search-trigger-btn {
        min-width: 140px;
        max-width: 190px;
    }

    .active-context-pill span {
        max-width: 110px;
    }

    .pos-screen {
        grid-template-columns: 1fr 320px;
        gap: 1rem;
    }
}

/* 4. Standard Desktop & Large Laptop (1200px to 1599.98px) */
@media (min-width: 1200px) and (max-width: 1599.98px) {
    .search-trigger-btn {
        min-width: 200px;
        max-width: 260px;
    }
    
    .active-context-pill span {
        max-width: 150px;
    }
}

/* 5. Full HD+ Displays & Ultrawide (1600px to 2199.98px) */
@media (min-width: 1600px) {
    :root {
        --sidebar-width: 280px;
        --topbar-height: 70px;
    }

    html {
        font-size: 17px;
    }

    .stat-card .stat-value {
        font-size: 1.85rem;
    }

    .chart-container-responsive {
        height: 320px;
    }

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

/* 6. TV / 4K Ultra-HD / Large Wall Displays (>= 2200px) */
@media (min-width: 2200px) {
    :root {
        --sidebar-width: 330px;
        --topbar-height: 82px;
    }

    html {
        font-size: 19px;
    }

    body {
        letter-spacing: 0.01em;
    }

    .sidebar-brand {
        font-size: 1.35rem;
        padding: 0 1.5rem;
    }

    .sidebar-nav-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    .sidebar-nav-link i {
        font-size: 1.15rem;
    }

    .stat-card {
        padding: 1.85rem;
        border-radius: 16px;
    }

    .stat-card .stat-value {
        font-size: 2.35rem;
    }

    .stat-card .stat-label {
        font-size: 0.85rem;
    }

    .stat-card .stat-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .chart-container-responsive {
        height: 400px;
    }

    .quick-shortcuts-bar {
        padding: 0.75rem 2rem;
        gap: 0.75rem;
    }

    .quick-voucher-btn {
        padding: 0.4rem 0.85rem;
        font-size: 0.88rem;
    }

    .quick-voucher-btn kbd {
        font-size: 0.75rem;
        padding: 3px 7px;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
    }

    .sidebar, .topbar, .quick-shortcuts-bar, .no-print, .btn, .modal, .sidebar-backdrop {
        display: none !important;
    }

    .main-content-wrapper {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .card-modern {
        border: none !important;
        box-shadow: none !important;
    }

    .print-invoice-sheet {
        width: 100% !important;
        margin: 0 !important;
        padding: 15mm !important;
        font-size: 11pt;
    }

    .print-thermal-sheet {
        width: 76mm !important;
        margin: 0 auto !important;
        padding: 2mm !important;
        font-size: 9pt;
    }

    @page {
        margin: 10mm;
    }
}
