/* Ensure HTML and Body do not break position: sticky due to overflow-x: hidden */
html, body {
    overflow-x: clip !important;
}

/* Nomenclature Page Styles */

/* Nomenclature Hero Banner */
.nomenclature-hero {
    background-image: linear-gradient(rgba(20, 47, 34, 0.82), rgba(20, 47, 34, 0.94)), url('assets/tech_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 80px;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.nomenclature-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.nomenclature-hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.nomenclature-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.15;
}

.nomenclature-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

/* Big Search Bar Area */
.search-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.search-wrapper {
    display: flex;
    background-color: var(--white);
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(35, 138, 94, 0.25);
}

.search-input-icon {
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: var(--text-light);
    font-size: 1.2rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-family: var(--font-main);
    color: var(--text-dark);
    padding: 10px 5px;
    background: transparent;
}

.search-clear-btn {
    border: none;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    padding: 0 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.search-clear-btn:hover {
    color: var(--cta-red);
}

.search-btn {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: var(--font-main);
}

.search-btn:hover {
    background-color: var(--accent-green);
}

/* Intro Text under Hero */
.nomenclature-intro-section {
    background-color: var(--bg-light);
    padding: 40px 0 20px;
    border-bottom: 1px solid var(--border-color);
}

.nomenclature-intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.nomenclature-intro-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Layout Grid */
.nomenclature-layout-section {
    padding: 50px 0 100px;
    background-color: var(--white);
}

.nomenclature-grid {
    display: grid;
    grid-template-columns: 360px 1fr 320px;
    gap: 30px;
    align-items: start;
}

/* Sidebar Left: Category Tree */
.nomenclature-sidebar-left {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    align-self: start;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-tree-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tree-node {
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.tree-node-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    cursor: pointer;
    background-color: var(--bg-light);
    border: 1px solid transparent;
    border-radius: 6px;
    transition: all 0.2s ease;
    user-select: none;
}

.tree-node-header:hover {
    background-color: var(--border-color);
    color: var(--primary-green);
}

.tree-node.active .tree-node-header {
    background-color: rgba(20, 89, 60, 0.08);
    border-color: rgba(20, 89, 60, 0.15);
    color: var(--primary-green);
    font-weight: 600;
}

.tree-node-label-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.3;
}

.tree-node-icon {
    font-size: 0.95rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.tree-node-arrow {
    font-size: 0.75rem;
    color: var(--text-light);
    transition: transform 0.2s ease;
}

.tree-node.expanded .tree-node-arrow {
    transform: rotate(90deg);
}

.tree-node-children {
    display: none;
    padding: 5px 0 5px 15px;
    flex-direction: column;
    gap: 4px;
    border-left: 1px dashed var(--border-color);
    margin-left: 20px;
    margin-top: 4px;
}

.tree-node.expanded .tree-node-children {
    display: flex;
}

.tree-child-item {
    font-size: 0.82rem;
    padding: 8px 10px;
    color: var(--text-light);
    border-radius: 4px;
    cursor: pointer;
    line-height: 1.3;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tree-child-item::before {
    content: "•";
    color: var(--border-color);
    font-size: 1rem;
}

.tree-child-item:hover {
    background-color: rgba(20, 89, 60, 0.04);
    color: var(--primary-green);
}

.tree-child-item.active {
    background-color: rgba(20, 89, 60, 0.08);
    color: var(--primary-green);
    font-weight: 600;
}

.tree-child-item.active::before {
    color: var(--primary-green);
}

/* Reset Category Filter Button */
.reset-filter-btn {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    border: 1px dashed var(--border-color);
    border-radius: 6px;
    background: transparent;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.reset-filter-btn:hover {
    border-color: var(--cta-red);
    color: var(--cta-red);
    background-color: rgba(217, 56, 50, 0.04);
}

/* Central Area: Results */
.nomenclature-main-content {
    min-width: 0; /* Prevents flex items from overflowing */
}

/* Filters Top Bar */
.filters-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.active-filters-info {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.active-filters-info span {
    color: var(--primary-green);
    font-weight: 700;
}

.class-filter-chips {
    display: flex;
    gap: 8px;
    align-items: center;
}

.filter-chip-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    margin-right: 5px;
}

.filter-chip {
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.filter-chip:hover {
    border-color: var(--text-light);
    background-color: var(--bg-light);
}

.filter-chip.active {
    color: var(--white);
}

.filter-chip.active[data-class="all"] {
    background-color: var(--text-dark);
    border-color: var(--text-dark);
}

.filter-chip.active[data-class="sd"] {
    background-color: var(--cta-red);
    border-color: var(--cta-red);
}

.filter-chip.active[data-class="s"] {
    background-color: #F59E0B; /* Amber */
    border-color: #F59E0B;
}

.filter-chip.active[data-class="ma"] {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

.filter-chip.active[data-class="i"] {
    background-color: var(--text-light);
    border-color: var(--text-light);
}

/* Results Table Container */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    background-color: var(--white);
}

.nomenclature-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.nomenclature-table th {
    background-color: var(--bg-light);
    padding: 16px 18px;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nomenclature-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    line-height: 1.45;
}

.nomenclature-table tbody tr {
    transition: background-color 0.2s;
}

.nomenclature-table tbody tr:hover {
    background-color: rgba(20, 89, 60, 0.02);
}

/* Table columns sizes */
.col-code {
    width: 90px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.88rem;
}

.col-designation {
    min-width: 250px;
    color: var(--text-dark);
}

.col-classe {
    width: 70px;
    text-align: center;
}

.col-danger {
    width: 170px;
}

.col-action {
    width: 120px;
    text-align: center;
}

/* Class Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-align: center;
}

.badge-sd {
    background-color: rgba(217, 56, 50, 0.1);
    color: var(--cta-red);
    border: 1px solid rgba(217, 56, 50, 0.2);
}

.badge-s {
    background-color: rgba(245, 158, 11, 0.1);
    color: #D97706; /* Dark Amber */
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-ma {
    background-color: rgba(20, 89, 60, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(20, 89, 60, 0.2);
}

.badge-i {
    background-color: rgba(100, 116, 139, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(100, 116, 139, 0.2);
}

/* Danger badges and tooltips */
.danger-badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.danger-tag {
    background-color: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #475569;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: help;
    position: relative;
    transition: all 0.2s ease;
}

.danger-tag:hover {
    background-color: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}

/* JS Tooltip Styling */
.hazard-tooltip {
    position: absolute;
    top: -9999px;
    left: -9999px;
    z-index: 1000;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    line-height: 1.4;
    max-width: 250px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s;
    font-family: var(--font-main);
    font-weight: 400;
}

.hazard-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.hazard-tooltip::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--text-dark) transparent transparent;
    display: block;
    width: 0;
}

/* Add to list action buttons */
.add-to-list-btn {
    background-color: var(--white);
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
}

.add-to-list-btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.add-to-list-btn.added {
    background-color: var(--accent-green);
    color: var(--white);
    border-color: var(--accent-green);
    cursor: default;
}

/* Pagination Section */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.pagination-info {
    font-size: 0.85rem;
    color: var(--text-light);
}

.pagination-controls {
    display: flex;
    gap: 5px;
}

.page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.page-btn:hover:not(:disabled) {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background-color: rgba(20, 89, 60, 0.02);
}

.page-btn.active {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

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

/* Empty State Table */
.empty-table-state {
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
}

.empty-table-icon {
    font-size: 3rem;
    color: var(--border-color);
    margin-bottom: 15px;
}

.empty-table-text {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

/* Sidebar Right: Floating Cart Card */
.nomenclature-sidebar-right {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    align-self: start;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.cart-header {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 18px 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header-title {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-count-badge {
    background-color: var(--cta-red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    min-width: 22px;
    text-align: center;
}

.cart-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    max-height: 350px;
    overflow-y: auto;
}

/* Cart Item List */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    gap: 10px;
}

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

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.cart-item-code-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-code {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.cart-item-designation {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.35;
}

.cart-item-delete {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 2px;
    transition: color 0.2s;
    margin-top: 2px;
}

.cart-item-delete:hover {
    color: var(--cta-red);
}

/* Empty Cart State */
.cart-empty-state {
    text-align: center;
    padding: 40px 10px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cart-empty-icon {
    font-size: 2.5rem;
    color: var(--border-color);
}

.cart-empty-text {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Cart Footer Actions */
.cart-footer {
    padding: 20px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Cart Legend */
.cart-legend {
    padding: 15px 20px;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 8px 8px;
}

.legend-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.legend-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-text {
    font-size: 0.72rem;
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
}


.cart-export-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-export {
    background-color: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-export:hover:not(:disabled) {
    background-color: var(--border-color);
    border-color: var(--text-light);
}

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

.btn-checkout {
    background-color: var(--cta-red);
    color: var(--white);
    border: 1px solid var(--cta-red);
    padding: 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.88rem;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s;
}

.btn-checkout:hover:not(:disabled) {
    background-color: var(--cta-red-hover);
    border-color: var(--cta-red-hover);
}

.btn-checkout:disabled {
    background-color: var(--text-light);
    border-color: var(--text-light);
    opacity: 0.6;
    cursor: not-allowed;
}

/* Floating Cart Drawer Toggle for Mobile */
.mobile-cart-toggle {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--cta-red);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(217, 56, 50, 0.4);
    z-index: 90;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform 0.2s ease;
}

.mobile-cart-toggle:active {
    transform: scale(0.9);
}

.mobile-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Drawer overlay styles for Mobile */
.nomenclature-sidebar-right.mobile-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    max-height: 100vh;
    z-index: 1000;
    border-radius: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
}

.nomenclature-sidebar-right.mobile-drawer.open {
    right: 0;
}

.cart-drawer-close {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Dark background overlay for mobile drawer */
.cart-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.5);
    z-index: 999;
}

.cart-drawer-overlay.visible {
    display: block;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .nomenclature-grid {
        grid-template-columns: 300px 1fr;
    }
    
    /* Move Cart to floating drawer */
    .nomenclature-sidebar-right {
        display: none;
    }
    
    .mobile-cart-toggle {
        display: flex;
    }
    
    .nomenclature-sidebar-right.mobile-drawer {
        display: flex;
    }
    
    .cart-drawer-close {
        display: block;
    }
}

@media (max-width: 992px) {
    .nomenclature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Make Left Sidebar (Category Tree) expand-collapse or display full width at top */
    .nomenclature-sidebar-left {
        position: static;
        max-height: none;
    }
    
    /* Make table rows visually cards on small screens if needed, or scrollable */
    .nomenclature-table th:nth-child(4),
    .nomenclature-table td:nth-child(4) {
        display: none; /* Hide danger criteria on tablet/mobile to save space, or let it scroll */
    }
}

@media (max-width: 768px) {
    .nomenclature-hero {
        padding: 120px 0 60px;
    }
    
    .search-wrapper {
        flex-direction: column;
        gap: 10px;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }
    
    .search-wrapper > * {
        background-color: var(--white);
        border-radius: 6px;
    }
    
    .search-wrapper:focus-within {
        box-shadow: none;
    }
    
    .search-input-icon {
        padding: 12px 15px;
    }
    
    .search-btn {
        width: 100%;
        padding: 12px;
    }
    
    .filters-top-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .class-filter-chips {
        flex-wrap: wrap;
    }
    
    .col-code {
        width: 80px;
    }
    
    .col-action {
        width: 100px;
    }
    
    .nomenclature-table {
        font-size: 0.82rem;
    }
    
    .nomenclature-table td, 
    .nomenclature-table th {
        padding: 12px 10px;
    }
    
    .page-btn {
        min-width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}

/* Printing Media Style for PDF Export */
@media print {
    body * {
        visibility: hidden;
    }
    
    #print-area,
    #print-area * {
        visibility: visible;
    }
    
    #print-area {
        display: block !important;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        color: #000;
        background: #fff;
    }
    
    .print-logo-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 2px solid #000;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    
    .print-logo-brand {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .print-logo-img {
        height: 50px;
        width: auto;
        display: block;
    }
    
    .print-logo-text {
        font-family: var(--font-main);
        font-size: 1.5rem;
        font-weight: 800;
    }
    
    .print-company-info {
        font-size: 0.8rem;
        text-align: right;
        line-height: 1.4;
    }
    
    .print-title {
        font-size: 1.6rem;
        font-weight: 800;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .print-meta-info {
        font-size: 0.9rem;
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
    }
    
    .print-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 30px;
        font-size: 0.85rem;
    }
    
    .print-table th,
    .print-table td {
        border: 1px solid #ddd;
        padding: 8px 10px;
        text-align: left;
    }
    
    .print-table th {
        background-color: #f2f2f2;
        font-weight: 700;
    }
    
    .print-footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        border-top: 1px solid #000;
        padding-top: 10px;
        font-size: 0.75rem;
        text-align: center;
        display: flex;
        justify-content: space-between;
    }
}
