/* ═══════════════════════════════════════════════════════════════════════════════
   SUMSAHI KEMICALS - PRODUCT TABLE SYSTEM
   CSS Module for Clinical & Precise Product Data Visualization
   ═══════════════════════════════════════════════════════════════════════════════

   COMPONENT SYSTEM OVERVIEW
   ─────────────────────────────────────────────────────────────────────────────

   This CSS module provides a complete product table browsing system designed for
   B2B pharma/chemical sourcing. The system prioritizes:

   1. Clinical Precision - Clean typography, tight grids, high information density
   2. Professional Trust - Authoritative styling, clear hierarchy, no decorative flourish
   3. Mobile-First UX - Bottom sheet interaction on mobile, modal on desktop
   4. Accessibility - Semantic HTML support, keyboard navigation, contrast compliance
   5. Brand Consistency - Uses only existing CSS variables from main.css

   CLASS NAMING CONVENTION
   ─────────────────────────────────────────────────────────────────────────────

   All component classes use "pt-" prefix (product-table) to prevent name collisions.

   Naming pattern:
     .pt-{component}              → Main container or block element
     .pt-{component}-{modifier}   → Variant or sub-component
     .pt-{state}                  → State class (e.g., .pt-loading, .pt-empty)
     .pt-tag--{variant}           → Regulatory tag variant (e.g., .pt-tag--usp)

   Example:
     .pt-container                → Wrapper for entire table system
     .pt-filter-bar               → Search + filter controls
     .pt-table                    → Main HTML table element
     .pt-row                      → Table row styling
     .pt-tag                      → Base tag style
     .pt-tag--usp                 → USP regulatory tag (soft blue)
     .pt-modal                    → Desktop modal overlay
     .pt-sheet                    → Mobile bottom sheet panel
     .pt-spec-list                → Definition list inside modal/sheet
     .pt-empty                    → No results state
     .pt-loading                  → Skeleton loading state

   COMPONENT HIERARCHY
   ─────────────────────────────────────────────────────────────────────────────

   1. .pt-container
      ├─ .pt-filter-bar
      │  ├─ .pt-search
      │  ├─ .pt-count
      │  └─ .pt-filter-pill
      └─ .pt-table
         ├─ thead → column headers
         └─ tbody
            └─ .pt-row
               ├─ .pt-tag (multiple, per spec column)
               └─ action button/link

   2. Desktop Modal Chain
      .pt-modal-overlay (covers entire viewport)
      └─ .pt-modal
         ├─ .pt-modal-header
         │  ├─ h3 (product name)
         │  ├─ .pt-tag (CAS badge)
         │  └─ close button
         ├─ .pt-modal-body
         │  └─ .pt-spec-list
         │     └─ .pt-spec-item
         └─ .pt-modal-footer
            └─ Enquire button

   3. Mobile Bottom Sheet Chain
      .pt-sheet-overlay (covers entire viewport)
      └─ .pt-sheet
         ├─ .pt-sheet-handle
         ├─ .pt-sheet-header
         │  ├─ h3 (product name)
         │  ├─ .pt-tag (CAS badge)
         │  └─ close button
         ├─ .pt-sheet-body
         │  └─ .pt-spec-list
         │     └─ .pt-spec-item
         └─ .pt-sheet-footer (sticky)
            └─ Enquire button

   MEDIA QUERY STRATEGY
   ─────────────────────────────────────────────────────────────────────────────

   Mobile-first breakpoint: 768px (matches main.css)
   - Below 768px: Mobile layout (bottom sheet on detail, card-style rows)
   - 768px and above: Desktop layout (modal on detail, full HTML table)

   ANIMATION APPROACH
   ─────────────────────────────────────────────────────────────────────────────

   - Bottom sheet slides up from bottom (translateY)
   - Modal fades in and scales (opacity + scale)
   - Overlays fade in (opacity)
   - All transitions: 200-300ms, ease cubic-bezier
   - Respects prefers-reduced-motion for accessibility

   REGULATORY TAG COLOURS
   ─────────────────────────────────────────────────────────────────────────────

   Tags use muted, professional tones that complement brand blue (#1DA8DC):
   - .pt-tag--usp    → Soft Blue     (#EBF5FC / #0E7BAA)
   - .pt-tag--bp     → Teal          (#ECFAF8 / #0D7F77)
   - .pt-tag--ep     → Green         (#EFF9F3 / #228B5D)
   - .pt-tag--ip     → Amber         (#FEF6ED / #B8860B)
   - .pt-tag--jp     → Orange        (#FEF1E8 / #D97706)
   - .pt-tag--usdmf  → Purple        (#F3EBFF / #7C3AED)
   - .pt-tag--edmf   → Indigo        (#EEE9FF / #4F46E5)
   - .pt-tag--cep    → Blue-Indigo   (#E9ECFF / #4338CA)
   - .pt-tag--asmf   → Rose          (#FCE7F3 / #D63384)
   - .pt-tag--dmf    → Slate         (#F1F5F9 / #64748B)
   - .pt-tag--yes    → Green (Yes)   (#DCFCE7 / #16A34A)
   - .pt-tag--no     → Light Grey    (#F3F4F6 / #9CA3AF)

   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   1. PRODUCT TABLE CONTAINER
   ───────────────────────────────────────────────────────────────────────────── */

.pt-container {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────────────────────
   2. PRODUCT FILTER BAR
   ───────────────────────────────────────────────────────────────────────────── */

.pt-filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.pt-search {
  flex: 1;
  min-width: 200px;
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.pt-search:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 168, 220, 0.12);
}

.pt-search::placeholder {
  color: var(--text-light);
}

.pt-count {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}

.pt-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pt-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--light-blue);
  color: var(--blue-deep);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.pt-filter-pill:hover {
  background: var(--light-blue);
  border-color: var(--blue);
}

.pt-filter-pill.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.pt-filter-pill-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 0.75rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.pt-filter-pill-close:hover {
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   3. PRODUCT TABLE (Desktop)
   ───────────────────────────────────────────────────────────────────────────── */

.pt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--white);
}

.pt-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--blue-deep);
  box-shadow: 0 2px 8px rgba(9, 74, 107, 0.08);
}

.pt-table th {
  color: var(--white);
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pt-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background-color 0.2s;
  cursor: pointer;
}

.pt-table tbody tr:last-child {
  border-bottom: none;
}

.pt-table tbody tr:nth-child(odd) {
  background: var(--white);
}

.pt-table tbody tr:nth-child(even) {
  background: var(--off-white);
}

.pt-table tbody tr:hover {
  background: rgba(29, 168, 220, 0.06);
}

.pt-table tbody tr.pt-row-active {
  background: var(--light-blue);
}

.pt-table td {
  padding: 13px 16px;
  vertical-align: middle;
  color: var(--text);
}

.pt-table td:first-child {
  color: var(--text-light);
  font-size: 0.85rem;
  width: 40px;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────────────────────
   4. PRODUCT ROW STYLING (Mobile Card View)
   ───────────────────────────────────────────────────────────────────────────── */

.pt-row {
  display: none;
}

.pt-row-mobile {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.pt-row-mobile:hover {
  border-color: var(--blue);
  background: var(--off-white);
}

.pt-row-mobile:active {
  border-color: var(--blue);
  background: var(--light-blue);
}

.pt-row-mobile-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.pt-row-mobile-left h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.pt-row-mobile-cas {
  font-size: 0.75rem;
  color: var(--text-light);
  font-family: 'Courier New', monospace;
  line-height: 1.4;
}

.pt-row-mobile-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.pt-row-mobile-tags {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.pt-row-mobile-arrow {
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1;
}

/* Inline spec tags below product name in table */
.pt-inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   5. REGULATORY / SPEC TAGS
   ───────────────────────────────────────────────────────────────────────────── */

.pt-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* USP - Soft Blue */
.pt-tag--usp {
  background: #EBF5FC;
  color: #0E7BAA;
  border: 1px solid #D4E8F5;
}

/* BP - Teal */
.pt-tag--bp {
  background: #ECFAF8;
  color: #0D7F77;
  border: 1px solid #D0F2F0;
}

/* EP - Green */
.pt-tag--ep {
  background: #EFF9F3;
  color: #228B5D;
  border: 1px solid #D8EFE5;
}

/* IP - Amber */
.pt-tag--ip {
  background: #FEF6ED;
  color: #B8860B;
  border: 1px solid #FCD34D;
}

/* JP - Orange */
.pt-tag--jp {
  background: #FEF1E8;
  color: #D97706;
  border: 1px solid #FEDBA8;
}

/* USDMF - Purple */
.pt-tag--usdmf {
  background: #F3EBFF;
  color: #7C3AED;
  border: 1px solid #E9D5FF;
}

/* EDMF - Indigo */
.pt-tag--edmf {
  background: #EEE9FF;
  color: #4F46E5;
  border: 1px solid #E0E7FF;
}

/* CEP - Blue-Indigo */
.pt-tag--cep {
  background: #E9ECFF;
  color: #4338CA;
  border: 1px solid #C7D2FE;
}

/* ASMF - Rose */
.pt-tag--asmf {
  background: #FCE7F3;
  color: #D63384;
  border: 1px solid #F8BBD0;
}

/* DMF - Slate */
.pt-tag--dmf {
  background: #F1F5F9;
  color: #64748B;
  border: 1px solid #E2E8F0;
}

/* Yes - Green (for boolean Yes) */
.pt-tag--yes {
  background: #DCFCE7;
  color: #16A34A;
  border: 1px solid #BBEF63;
}

/* No - Light Grey (for blank/no value) */
.pt-tag--no {
  background: #F3F4F6;
  color: #9CA3AF;
  border: 1px solid #E5E7EB;
}

/* CAS Badge (monospace, special styling) */
.pt-cas-badge {
  display: inline-block;
  background: var(--gray-light);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-family: 'Courier New', monospace;
  padding: 3px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────────────────────
   6. DESKTOP MODAL
   ───────────────────────────────────────────────────────────────────────────── */

.pt-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  animation: pt-fade-in 0.2s ease;
}

.pt-modal-overlay.pt-visible {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  animation: pt-modal-in 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pt-modal-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pt-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.pt-modal-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.pt-modal-header-cas {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.pt-modal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.pt-modal-close:hover {
  background: var(--light-blue);
  color: var(--blue);
}

.pt-modal-body {
  padding: 24px;
}

.pt-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}

.pt-modal-footer .btn-primary {
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   7. MOBILE BOTTOM SHEET
   ───────────────────────────────────────────────────────────────────────────── */

.pt-sheet-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2000;
  animation: pt-fade-in 0.3s ease;
}

.pt-sheet-overlay.pt-visible {
  display: block;
}

.pt-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 16px 16px 0 0;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  z-index: 2001;
  animation: pt-sheet-up 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pt-sheet-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.pt-sheet-handle {
  display: flex;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 12px;
}

.pt-sheet-handle-bar {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
}

.pt-sheet-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px 20px;
  border-bottom: 1px solid var(--border);
}

.pt-sheet-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.pt-sheet-header-cas {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.pt-sheet-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.pt-sheet-close:hover {
  background: var(--light-blue);
  color: var(--blue);
}

.pt-sheet-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}

.pt-sheet-footer {
  flex-shrink: 0;
  padding: 16px 24px 20px;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 10;
}

.pt-sheet-footer .btn-primary {
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   8. SPEC DETAIL LIST (used in both modal and sheet)
   ───────────────────────────────────────────────────────────────────────────── */

.pt-spec-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pt-spec-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

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

.pt-spec-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.pt-spec-value {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
}

.pt-spec-value-empty {
  color: var(--text-light);
  font-style: italic;
}

.pt-spec-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   9. EMPTY STATE
   ───────────────────────────────────────────────────────────────────────────── */

.pt-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  background: var(--off-white);
}

.pt-empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.6;
}

.pt-empty-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.pt-empty-text {
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 320px;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   10. LOADING STATE (Skeleton Shimmer)
   ───────────────────────────────────────────────────────────────────────────── */

.pt-loading {
  animation: pt-shimmer 2s infinite;
}

@keyframes pt-shimmer {
  0% {
    background: var(--gray-light);
  }
  50% {
    background: #f0f4f8;
  }
  100% {
    background: var(--gray-light);
  }
}

.pt-skeleton-row {
  height: 48px;
  margin-bottom: 8px;
  border-radius: 4px;
}

.pt-skeleton-header {
  height: 56px;
  margin-bottom: 16px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   11. ANIMATIONS & TRANSITIONS
   ───────────────────────────────────────────────────────────────────────────── */

@keyframes pt-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pt-scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .pt-modal,
  .pt-sheet,
  .pt-modal-overlay,
  .pt-sheet-overlay,
  .pt-filter-pill,
  .pt-row-mobile,
  .pt-table tbody tr {
    animation: none !important;
    transition: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   12. RESPONSIVE LAYOUT (Mobile-First)
   ───────────────────────────────────────────────────────────────────────────── */

/* Mobile: Default view (below 768px) */
@media (max-width: 767px) {
  /* Hide desktop table */
  .pt-table {
    display: none;
  }

  /* Show mobile card list */
  .pt-row-mobile {
    display: block;
  }

  /* Adjust filter bar */
  .pt-filter-bar {
    flex-direction: column;
    gap: 12px;
  }

  .pt-search {
    width: 100%;
  }

  .pt-count {
    width: 100%;
    text-align: center;
  }

  .pt-filter-pills {
    width: 100%;
    justify-content: flex-start;
  }

  /* Adjust spec list for mobile (single column) */
  .pt-spec-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pt-spec-label {
    display: inline-block;
    font-size: 0.75rem;
    margin-bottom: 2px;
  }

  /* Modal hidden on mobile, use sheet instead */
  .pt-modal-overlay {
    display: none !important;
  }

  /* Sheet is visible on mobile */
  .pt-sheet-overlay.pt-visible {
    display: block;
  }
}

/* Desktop: Full table layout (768px and above) */
@media (min-width: 768px) {
  /* Hide mobile cards */
  .pt-row-mobile {
    display: none;
  }

  /* Show desktop table and rows */
  .pt-table {
    display: table;
  }

  .pt-row {
    display: table-row;
  }

  /* Sheet hidden on desktop, use modal instead */
  .pt-sheet-overlay {
    display: none !important;
  }

  /* Modal is visible on desktop */
  .pt-modal-overlay.pt-visible {
    display: flex;
  }
}

/* Large Desktop: Optimizations */
@media (min-width: 1200px) {
  .pt-filter-bar {
    flex-wrap: nowrap;
  }

  .pt-search {
    min-width: 300px;
  }

  .pt-modal {
    max-width: 600px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   13. ACCESSIBILITY & USABILITY
   ───────────────────────────────────────────────────────────────────────────── */

/* Keyboard focus indicators */
.pt-search:focus,
.pt-filter-pill:focus,
.pt-modal-close:focus,
.pt-sheet-close:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  .pt-tag {
    border-width: 1px;
    font-weight: 700;
  }

  .pt-table th {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  }

  .pt-modal,
  .pt-sheet {
    border: 1px solid var(--text);
  }
}

/* Dark mode support (optional, if main.css implements) */
@media (prefers-color-scheme: dark) {
  /* Uncomment if dark mode is needed:
  .pt-container {
    background: var(--gray-dark);
    border-color: rgba(255, 255, 255, 0.1);
  }
  .pt-filter-bar {
    background: rgba(255, 255, 255, 0.05);
  }
  .pt-table td {
    color: rgba(255, 255, 255, 0.9);
  }
  */
}

/* ─────────────────────────────────────────────────────────────────────────────
   14. PRINT STYLES
   ───────────────────────────────────────────────────────────────────────────── */

@media print {
  .pt-filter-bar,
  .pt-modal-overlay,
  .pt-sheet-overlay,
  .pt-sheet-footer {
    display: none;
  }

  .pt-table {
    box-shadow: none;
    border: 1px solid #000;
  }

  .pt-table thead {
    background: #f0f0f0;
  }

  .pt-modal {
    box-shadow: none;
    page-break-inside: avoid;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   END OF PRODUCT TABLE SYSTEM CSS
   ═══════════════════════════════════════════════════════════════════════════════ */
