@charset "UTF-8";
/** 
 * 1. Container & global table styles 
 */

 .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 10px !important;
  padding-top: 0 !important;
 }
 
 svg.e-font-icon-svg.e-fas-pencil-alt {
  width: 15px;
  height: 15px;
}
.jet-meta-filter-checkboxes-container {
  width: 100%; 
}
th.jet-wc-product-table-col.jet-wc-product-table-col--th.jet-wc-product-table-col--type-product-meta.jet-wc-product-table-col--meta-_regular_price.jet-wc-product-table-col--sortable.jet-wc-product-table-col--collpased-body {
  width: 120px;
}
/* Bulk search button styling */
.jet-wc-bulk-search-button {
  background: #ffffff00 !important;
  border: 1px solid #ddd !important;
  color: #6c757d;
  cursor: pointer;
  padding: 8px 12px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: none !important;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 16px !important;
  margin-left: 8px;
  vertical-align: middle;
  white-space: nowrap;
}

.jet-wc-bulk-search-button:hover {
  background-color: #e0e0e0 !important;
  border-color: #999 !important;
}

.jet-wc-bulk-search-button svg {
  width: 20px;
  height: 20px;
  stroke: #555;
}

.jet-wc-bulk-search-button:hover svg {
  stroke: #333;
}

/* Search input next to bulk button */
input.jet-wc-product-filter[data-ui="search"] {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 160px);
}

/* Checkbox search field styling */
.jet-meta-checkbox-search {
  width: 100%;
  padding: 6px 12px !important;
  margin-bottom: 10px !important;
  border: 1px solid #ddd !important;
  border-radius: 16px !important;
  box-sizing: border-box !important; 
  margin-left: 0 !important; 
  background: white !important;
  position: relative;
}

/* Loading indicator for checkbox search */
.jet-meta-checkbox-search.loading {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><circle cx="8" cy="8" r="6" fill="none" stroke="%23999" stroke-width="2" stroke-dasharray="9.42" stroke-dashoffset="9.42"><animateTransform attributeName="transform" type="rotate" values="0 8 8;360 8 8" dur="1s" repeatCount="indefinite"/></circle></svg>') !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 16px 16px !important;
  padding-right: 35px !important;
}

/* Dynamic checkboxes styling */
.jet-meta-checkbox-label.dynamic-checkbox {
  background-color: #f9f9f9;
}

/* Load More button styling */
.jet-meta-checkbox-load-more-wrapper {
  text-align: center;
  margin-top: 10px !important;
  padding-top: 10px !important;
  border-top: 1px solid #eee !important;
}

.jet-meta-checkbox-load-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 16px !important;
  margin: 0 !important;
  border: 1px solid #ddd !important;
  border-radius: 20px !important;
  background-color: #ffffff !important;
  color: #555 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  min-height: 36px !important;
  min-width: 90px !important;
  box-sizing: border-box !important;
}

.jet-meta-checkbox-load-more:hover {
  background-color: #13b981 !important;
  border-color: #13b981 !important;
  color: white !important;
  transform: translateY(-1px) !important;
  box-shadow: none !important;
}

.jet-meta-checkbox-load-more:active {
  transform: translateY(0) !important;
  box-shadow: 0 1px 4px rgba(0, 124, 186, 0.2) !important;
}

.jet-meta-checkbox-load-more.loading {
  pointer-events: none !important;
  opacity: 0.7 !important;
}

/* Loaded items animation */
.jet-meta-checkbox-label.load-more-item {
  animation: slideInFade 0.3s ease-out !important;
}

@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollable filter container */
.jet-meta-filter-checkboxes-container {
  max-height: 300px !important;
  position: relative !important;
}

.jet-meta-filter-checkboxes-container::-webkit-scrollbar {
  width: 6px !important;
}

.jet-meta-filter-checkboxes-container::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
  border-radius: 3px !important;
}

.jet-meta-filter-checkboxes-container::-webkit-scrollbar-thumb {
  background: #c1c1c1 !important;
  border-radius: 3px !important;
}

.jet-meta-filter-checkboxes-container::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1 !important;
}

/* Export dropdown styles */
.export-dropdown {
  position: relative;
  display: inline-block;
}

.export-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 4px;
  border: 1px solid #ddd;
  top: 100%;
  left: 0;
}

.export-dropdown-content.show {
  display: block;
}

.export-dropdown-content button {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
}

.export-dropdown-content button:hover {
  background-color: #f1f1f1;
}

.export-dropdown-content button:first-child {
  border-radius: 4px 4px 0 0;
}

.export-dropdown-content button:last-child {
  border-radius: 0 0 4px 4px;
}

/* Bulk Search Modal Styles */
.jet-bulk-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.jet-bulk-search-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.jet-bulk-search-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow: auto;
}

.jet-bulk-search-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jet-bulk-search-header h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.jet-bulk-search-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jet-bulk-search-close:hover {
  background-color: #13b981 !important;
  border-color: #13b981 !important;
  color: white !important;
}

.jet-bulk-search-body {
  padding: 20px;
}

.jet-bulk-search-body p {
  margin: 0 0 15px 0;
  color: #666;
  font-size: 14px;
}

#jet-bulk-search-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  resize: vertical;
  box-sizing: border-box;
}

.jet-bulk-search-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}


/* Bulk Search Divider */
.jet-bulk-search-divider {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #e0e0e0;
}

/* Bulk Search Upload Section */
.jet-bulk-search-upload {
  margin-top: 15px;
}

.jet-bulk-search-upload p {
  margin: 0 0 10px 0;
  color: #666;
  font-size: 14px;
}

.jet-bulk-search-upload-btn {
  background: #f5f5f5 !important;
  border: 1px solid #ddd !important;
  color: #333 !important;
  padding: 8px 15px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  transition: all 0.2s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.jet-bulk-search-upload-btn:hover {
  background-color: #13b981 !important;
  border-color: #13b981 !important;
  color: white !important;
}

.jet-bulk-search-upload-btn .dashicons {
  font-size: 16px !important;
  width: 16px !important;
  height: 16px !important;
  line-height: 16px !important;
}

.jet-bulk-search-filename {
  display: inline-block;
  margin-left: 10px;
  color: #2e7d32;
  font-size: 13px;
  font-style: italic;
}

.jet-bulk-search-upload-error {
  margin-top: 10px;
  padding: 8px 12px;
  background: #ffebee;
  color: #c62828;
  border-left: 3px solid #f44336;
  border-radius: 3px;
  font-size: 13px;
}

/* Bulk Search Notification */
.jet-bulk-search-notification {
  position: fixed !important;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  padding: 20px 50px 20px 25px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
  z-index: 100000 !important;
  max-width: 700px !important;
  min-width: 400px !important;
  width: auto !important;
  height: auto !important;
  max-height: none !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  animation: slideUp 0.4s ease-out !important;
  box-sizing: border-box !important;
}

.jet-bulk-notification-close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  background: transparent !important;
  border: none !important;
  font-size: 24px !important;
  font-weight: bold !important;
  line-height: 1 !important;
  color: inherit !important;
  cursor: pointer !important;
  padding: 5px 10px !important;
  opacity: 0.6 !important;
  transition: opacity 0.2s ease !important;
}

.jet-bulk-notification-close:hover {
  opacity: 1 !important;
}

.jet-bulk-notification-content {
  padding-right: 20px !important;
}

.jet-bulk-not-found-list {
  margin-top: 10px !important;
  max-height: 200px !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
}

.jet-bulk-not-found-item {
  display: inline-block !important;
  background: rgba(0, 0, 0, 0.1) !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
  font-size: 12px !important;
  word-break: break-all !important;
}

.jet-bulk-search-notification.info {
  background: #e3f2fd !important;
  color: #1565c0 !important;
  border-left: 5px solid #1976d2 !important;
}

.jet-bulk-search-notification.success {
  background: #e8f5e9 !important;
  color: #2e7d32 !important;
  border-left: 5px solid #4caf50 !important;
}

.jet-bulk-search-notification.warning {
  background: #fff3e0 !important;
  color: #e65100 !important;
  border-left: 5px solid #ff9800 !important;
}

.jet-bulk-search-notification.error {
  background: #ffebee !important;
  color: #c62828 !important;
  border-left: 5px solid #f44336 !important;
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .jet-bulk-search-notification {
    min-width: 90% !important;
    max-width: 90% !important;
    left: 5% !important;
    transform: none !important;
    bottom: 20px !important;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

/* Export All dropdown styles */
.export-all-dropdown {
  position: relative;
  display: inline-block;
}

.export-all-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 4px;
  border: 1px solid #ddd;
  top: 100%;
  left: 0;
}

.export-all-dropdown-content.show {
  display: block;
}

.export-all-dropdown-content button {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
}

.export-all-dropdown-content button:hover {
  background-color: #f1f1f1;
  color: black
}

.export-all-dropdown-content button:first-child {
  border-radius: 4px 4px 0 0;
}

.export-all-dropdown-content button:last-child {
  border-radius: 0 0 4px 4px;
}

/* Updated cell animation after form submission */
.jet-wc-product-table-col.cell-updated {
  background-color: #d4edda !important;
  border: 2px solid #28a745 !important;
  transition: all 0.3s ease !important;
  animation: cellUpdateFlash 2s ease-in-out !important;
}

@keyframes cellUpdateFlash {
  0% {
    background-color: #28a745;
    color: white;
    transform: scale(1.02);
  }
  25% {
    background-color: #d4edda;
    color: #155724;
  }
  100% {
    background-color: transparent;
    color: inherit;
    transform: scale(1);
  }
}
.jet-wc-product-filters {
  width: 300px;
}
.edit_product, .delete_product {
  display: inline-block; 
}
.jet-wc-product-table-container {
  clear: both;
  max-width: 100%;
  width: 100%;
  position: relative;
}
td.jet-wc-product-table-col.jet-wc-product-table-col--td.jet-wc-product-table-col--type-product-elementor-template {
  padding: 0 !important;
}


.jet-wc-product-table {
  width: 100%;
  border-spacing: 0;
  table-layout: fixed;
  border: 1px solid #dfdfe2;
  border-collapse: separate;
  border-radius: 16px;
  overflow: hidden;
}

/* Remove borders from cells, only external border on table */
.jet-wc-product-table th,
.jet-wc-product-table td {
  border: none;
}

/* Border between rows in tbody */
.jet-wc-product-table tbody tr {
  border-bottom: 1px solid #dfdfe2;
}

/* Remove border from last row */
.jet-wc-product-table tbody tr:last-child {
  border-bottom: none;
}

/* Round corners for first row header cells */
.jet-wc-product-table thead tr:first-child th:first-child {
  border-top-left-radius: 15px;
}
.jet-wc-product-table thead tr:first-child th:last-child {
  border-top-right-radius: 15px;
}

/* Round corners for last row body cells */
.jet-wc-product-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 15px;
}
.jet-wc-product-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 15px;
}

.jet-wc-product-table-row--headings {
  width: 100%;
}

.jet-wc-product-table-row--headings th {
  width: auto;
}
/* Sticky header: cloned fixed header that syncs with horizontal scroll */
.jet-sticky-header {
  background-color: #f8f9fa;
}
.jet-sticky-header thead th {
  background-color: #f8f9fa !important;
  border-top: 1px solid #dfdfe2 !important;
  border-bottom: 1px solid #dfdfe2 !important;
}

.jet-wc-product-table thead {
  width: 100%;
}

.jet-wc-product-table tbody {
  width: 100%;
}

/* Column visibility is now controlled dynamically by the admin "Hidden by Default" toggle
   and the frontend Columns dropdown. No hardcoded display:none rules needed.
   Columns with data-hidden-by-default="true" are hidden by column-visibility.js on page load. */

/* Column visibility for pret_achizitie and example is now controlled by admin "Hidden by Default" toggle */

/* Constrain Example column width */
.jet-wc-product-table-col--meta-example {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
}

/* Prevent sticky header clone from flashing before page is fully shown */
body:not(.jet-table-page-loaded) .jet-wc-product-table-clone-container {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}

/* Mask table content during filter load without collapsing layout */
.jet-table-content-hidden {
  opacity: 0;
  pointer-events: none;
}

/* This rule is handled by JavaScript when column is made visible */
@media screen and (min-width: 601px) {
  .admin-bar .jet-wc-product-table-clone-container {
    top: 32px !important;
  }
}

/**
 * 2. Filters, active tags, pagination & load more
 */
.jet-wc-product-table-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 0;
  min-width: 0;
  overflow: visible;
}

.jet-wc-product-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.jet-wc-product-filter-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jet-wc-product-filter-block {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: column;
}

.jet-wc-product-filter-label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
  align-self: flex-start;
  display: block;
}

/* Responsive styling for filter labels */
@media (max-width: 768px) {
  .jet-wc-product-filter-label {
    font-size: 13px;
    margin-bottom: 3px;
  }
  
  .jet-wc-product-filter-block {
    gap: 5px;
  }
}

.jet-wc-product-filter-search-button {
  cursor: pointer;
}

.jet-wc-product-active-tags {
  margin-bottom: 10px;
}
.jet-wc-product-active-tags__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
 /* padding-bottom: 8px;*/
}

/* Custom scrollbar for active tags */
.jet-wc-product-active-tags__list::-webkit-scrollbar {
  height: 6px;
}

.jet-wc-product-active-tags__list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.jet-wc-product-active-tags__list::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.jet-wc-product-active-tags__list::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}
.jet-wc-product-active-tags__reset {
  margin-left: auto;
  cursor: pointer;
  text-decoration: underline;
}

/* Pagination wrapper with flexible layout */
.jet-wc-product-pager-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
margin:0;
  position: relative;
  padding: 1rem;
  background: #f2f3f5;
  border-radius: 16px;
  border: 1px solid #dfdfe2;
}

.jet-wc-product-pager-center {
  flex: 1;
  display: flex;
  justify-content: center;
  height: 40;
}

.jet-wc-product-pager-left {
  position: absolute;
  left: 1rem;
  display: flex;
  align-items: center;
}

.jet-wc-product-pager-left .jet-wc-product-pager-info {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.jet-wc-product-pager-right {
  position: absolute;
  right: 1rem;
  display: flex;
  align-items: center;
}

.jet-wc-product-pager-right select {
  min-width: 120px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 16px;
  background: white;
  font-size: 14px;
  margin-left: 10px;
}

/* Preserve existing pagination styles */
.editor-styles-wrapper .jet-wc-product-pager-block ul.page-numbers,
.jet-wc-product-pager-block ul.page-numbers {
  display: flex;
  gap: 5px;
  padding: 0;
  margin: 0;
}

.editor-styles-wrapper .jet-wc-product-pager-block ul.page-numbers li,
.jet-wc-product-pager-block ul.page-numbers li {
  list-style: none;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .jet-wc-product-pager-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  
  .jet-wc-product-pager-left {
    position: static;
    order: -2;
  }
  
  .jet-wc-product-pager-right {
    position: static;
    order: -1;
  }
  
  .jet-wc-product-pager-center {
    justify-content: center;
  }
}

/* Top bar styling - Active tags (left) and Search (right) */
.jet-wc-product-table-top-bar {

  display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      gap: 20px;
      padding: 1rem;
      background: #f2f3f5;
      border-radius: 16px;
      border: 1px solid #dfdfe2;


 
}

.jet-wc-product-table-top-bar-left {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.jet-wc-product-table-top-bar-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.jet-wc-product-table-top-bar-right {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

/* Price filter buttons styling */
.jet-price-filter-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.jet-price-filter-btn {
  padding: 8px 16px;
  border: none;
  background: #f9f9f9 !important;
  color: #333 !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  white-space: nowrap;
  border: 1px solid #dddddd !important;
}

.jet-price-filter-btn:hover {
  border-color: #007cba !important;
  background: #e8f4f8 !important;
  color: #005a87;
}

.jet-price-filter-btn.active {
    color: white !important;
    /* box-shadow: 0 2px 4px rgba(0, 124, 186, 0.3); */
    background: linear-gradient(to right, #3B82F6, #8B5CF6) !important;
    color: white !important;
}

.jet-price-filter-btn:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}

/* Search container styling */
.jet-wc-product-search-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jet-wc-product-search-container input[type="search"] {
  min-width: 250px;
  padding: 6px 12px !important;
  border: 1px solid #ddd !important;
  border-radius: 16px !important;
  background: white !important;
  font-size: 14px !important;
  box-sizing: border-box !important;
}

.jet-wc-product-search-container input[type="search"]:focus {
  border-color: #007cba;
  outline: 0;
  box-shadow: 0 0 0 1px #007cba;
}

.jet-wc-product-search-container .jet-wc-search-button {
  padding: 10px 20px;
  border: 1px solid #007cba;
  background: #007cba;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.jet-wc-product-search-container .jet-wc-search-button:hover {
  background: #005a87;
  border-color: #005a87;
}

/* Mobile responsive adjustments for top bar */
@media (max-width: 768px) {
  .jet-wc-product-table-top-bar {
    flex-direction: column;
    gap: 15px;
  }
  
  .jet-wc-product-table-top-bar-center {
    order: -2;
    width: 100%;
    justify-content: flex-start;
  }
  
  .jet-wc-product-table-top-bar-right {
    order: -1;
    width: 100%;
  }
  
  .jet-price-filter-buttons {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .jet-price-filter-btn {
    padding: 6px 12px;
    font-size: 13px;
    flex: 1;
    min-width: 0;
    text-align: center;
  }
  
  .jet-wc-product-search-container {
    width: 100%;
  }
  
  .jet-wc-product-search-container input[type="search"] {
    min-width: auto;
    flex: 1;
  }
}

/**
 * 3. Sorting
 */
.jet-wc-product-table-sort {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 50%;
  margin-top: -20px;
}
body:not(.rtl) .jet-wc-product-table-sort {
  right: 2px;
}
body.rtl .jet-wc-product-table-sort {
  left: 2px;
}
.jet-wc-product-table-sort__button {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  opacity: 0.3;
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}
.jet-wc-product-table-sort__button:hover, .jet-wc-product-table-sort__button-active {
  opacity: 1;
}
.jet-wc-product-table-sort__button.button-up {
  justify-content: flex-end;
}
.jet-wc-product-table-sort__button.button-down {
  justify-content: flex-start;
}
.jet-wc-product-table-sort__button svg {
  display: block;
  width: 100%;
  height: auto;
}

th.jet-wc-product-table-col--sortable {
  position: relative;
}
body:not(.rtl) th.jet-wc-product-table-col--sortable {
  padding-right: 20px;
}
body.rtl th.jet-wc-product-table-col--sortable {
  padding-left: 24px;
}

/**
 * 4. Columns Specific styles
 */
.jet-wc-product-table-actions,
.jet-wc-product-table-variation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.jet-wc-product-table-actions a, .jet-wc-product-table-actions button,
.jet-wc-product-table-variation a,
.jet-wc-product-table-variation button {
  white-space: nowrap;
}
.jet-wc-product-table-actions .action.minus, .jet-wc-product-table-actions .action.plus,
.jet-wc-product-table-variation .action.minus,
.jet-wc-product-table-variation .action.plus {
  display: none;
}

.jet-wc-product-table-variation__attrs, .jet-wc-product-table-variation__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.jet-wc-product-table-variation .jet-wc-product-table-variation-price {
  flex: 0 0 50%;
  text-align: right;
}

/**
 * 5. Mobile layouts
 */
@media only screen and (max-width: 767px) {
  .jet-wc-product-table--mobile-transform .jet-wc-product-table-col.jet-wc-product-table-col--th {
    display: none;
  }
  .jet-wc-product-table--mobile-transform .jet-wc-product-table-col.jet-wc-product-table-col--td {
    display: flex;
  }
  .jet-wc-product-table--mobile-transform .jet-wc-product-table-col.jet-wc-product-table-col--td:before {
    content: attr(data-column-name) ": ";
    font-weight: bold;
    flex: 0 0 40%;
  }
  .jet-wc-product-table--mobile-transform .jet-wc-product-table-row.jet-wc-product-table-row--body {
    display: block;
    width: 100%;
  }
  .jet-wc-product-table--mobile-transform .jet-wc-product-table-row.jet-wc-product-table-row--body + .jet-wc-product-table-row--body {
    margin: 30px 0 0;
  }
  .jet-wc-product-table-wrapper--mobile-moveable {
    width: 100%;
    max-width: 100%;
    overflow-x: scroll;
  }
  .jet-wc-product-table-wrapper.jet-wc-product-table-wrapper--mobile-moveable {
    max-width: 100%;
    height: 75vh;
    overflow-y: auto;
  }
  .jet-wc-product-table-wrapper--mobile-moveable .jet-wc-product-table {
    width: 100%;
    min-width: 800px;
  }
  .jet-wc-product-table-wrapper.jet-wc-product-table-wrapper--mobile-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: scroll;
  }
  .jet-wc-product-table--mobile-shorten .jet-wc-product-table-col--mobile-hide {
    display: none !important;
  }
  .jet-wc-product-table-wrapper.jet-wc-product-table-wrapper--mobile-shorten {
    width: 100%;
    max-width: 100%;
    overflow-x: scroll;
  }
  .jet-wc-product-table--mobile-collapsed .jet-wc-product-table-col--collpased-title {
    display: block;
    position: relative;
  }
  body:not(.rtl) .jet-wc-product-table--mobile-collapsed .jet-wc-product-table-col--collpased-title {
    padding-left: 32px;
  }
  body.rtl .jet-wc-product-table--mobile-collapsed .jet-wc-product-table-col--collpased-title {
    padding-right: 32px;
  }
  .jet-wc-product-table--mobile-collapsed .jet-wc-product-table-col--collpased-title.jet-wc-product-table-col--td:before {
    position: absolute;
    box-sizing: border-box;
    content: "+";
    width: 20px;
    height: 20px;
    line-height: 16px;
    text-align: center;
    font-size: 16px;
    border: 1px solid currentColor;
    border-radius: 10px;
    top: 50%;
    margin: -10px 0 0 0;
  }
  body:not(.rtl) .jet-wc-product-table--mobile-collapsed .jet-wc-product-table-col--collpased-title.jet-wc-product-table-col--td:before {
    left: 6px;
  }
  body.rtl .jet-wc-product-table--mobile-collapsed .jet-wc-product-table-col--collpased-title.jet-wc-product-table-col--td:before {
    right: 6px;
  }
  .jet-wc-product-table--mobile-collapsed .jet-wc-product-table-col--collpased-body {
    display: none;
  }
  .jet-wc-product-table--mobile-collapsed td.jet-wc-product-table-col--collpased-title.is-active:before {
    content: "−";
  }
  .jet-wc-product-table--mobile-collapsed td.jet-wc-product-table-col--collpased-title.is-active ~ .jet-wc-product-table-col--collpased-body {
    display: flex;
  }
  .jet-wc-product-table--mobile-collapsed td.jet-wc-product-table-col--collpased-title.is-active ~ .jet-wc-product-table-col--collpased-body:before {
    content: attr(data-column-name) ": ";
    font-weight: bold;
    flex: 0 0 40%;
  }
}
/* Meta Filter Styles */
.jet-meta-filter-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.jet-meta-filter-range input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.jet-meta-filter-range input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.jet-meta-filter-min, .jet-meta-filter-max {
    flex: 1;
    padding: 8px 12px !important;
    border: 1px solid #ddd;
    border-radius: 16px !important;
    font-size: 14px;
    text-align: center;
    min-width: 80px;
    font-size: 14px !important;
    line-height: 18px !important;
    margin: 0 !important;
}

.jet-meta-filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding: 8px 0;
}

.jet-meta-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px 0;
    font-size: 14px !important;
}

.jet-meta-checkbox-label:hover {
    background-color: #f5f5f5;
}

.jet-meta-filter-checkbox {
    margin: 0 !important;
    width: 12px;
    height: 12px;
    border-radius: 50% !important;
}

.jet-meta-filter {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.jet-meta-filter:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .jet-meta-filter-range {
        flex-direction: column;
        gap: 8px;
    }
    
    .jet-meta-filter-checkboxes {
        max-height: 150px;
    }
}

/* Filter block styling */
.jet-wc-product-filter-block {
    margin-bottom: 8px;
}

.jet-wc-product-filter-block:last-child {
    margin-bottom: 0;
}

/* Custom styling for different filter types */
.jet-meta-filter[data-ui="input"] {
    background-color: #fff;
    transition: all 0.3s ease;
}

.jet-meta-filter[data-ui="select"] {
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="m0 1 2 2 2-2z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 35px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.jet-meta-filter[data-ui="range-min"],
.jet-meta-filter[data-ui="range-max"] {
    background-color: #fff;
}

/* Loading state */
.jet-meta-filter.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Error state */
.jet-meta-filter.error {
    border-color: #dc3232;
    background-color: #ffeaea;
}

/* Success state */
.jet-meta-filter.success {
    border-color: #46b450;
}

/* Filter labels */
.jet-meta-filter-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
.jet-wc-product-filter-block.jet-meta-filter-da, 
.jet-wc-product-filter-block.jet-meta-filter-tf, 
.jet-wc-product-filter-block.jet-meta-filter-dr, 
.jet-wc-product-filter-block.jet-meta-filter-regular_price, 
.jet-wc-product-filter-block.jet-meta-filter-traffic, 
.jet-wc-product-filter-block.jet-meta-filter-insert_price {
  gap: 0;
}
/* Range filter specific styling */
/*
.jet-meta-filter-range::before {
    content: "";
    width: 10px;
    height: 1px;
    background-color: #666;
    align-self: center;
    flex-shrink: 0;
}*/

/* Checkbox styling improvements */
.jet-meta-filter-checkboxes {
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 12px;
    background-color: #fff;
}

.jet-meta-checkbox-label {
    transition: background-color 0.2s ease;
    border-radius: 3px;
    padding: 2px 8px;
    margin: 0 -8px;
}

.jet-meta-checkbox-label input[type="checkbox"] {
    accent-color: #007cba;
}

/* Active filter styling */
.jet-wc-product-active-tags .jet-wc-product-active-tag {
    background-color: #007cba;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

/* Specific styling for filter tags (with overflow control) */
.jet-wc-product-active-tags .jet-wc-product-active-tag--filter {
    max-width: 300px;
    overflow-y: hidden;
   /* overflow-x: scroll;*/
}

.jet-wc-product-active-tag__remove {
    color: white;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.jet-wc-product-active-tag__remove:hover {
    color: #ffcccc;
}

/* Filter container improvements */
.jet-wc-product-filters {
margin-bottom: 20px;
    padding: 1.5rem;
    background-color: #f2f3f5;
    border-radius: 16px;
    border: 1px solid #dfdfe2;
}

/* Responsive grid for filters */
.jet-wc-product-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

@media (max-width: 600px) {
    .jet-wc-product-filters {
        grid-template-columns: 1fr;
        padding: 10px;
    }
}

.jet-wc-product-table-container {
    display: flex; 
    gap: 1rem;
}
.jet-wc-product-filter-block {
    height: fit-content;
}
.jet-wc-product-filters {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}
.jet-wc-product-table-container {
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.jet-wc-product-table-container td.jet-wc-product-table-col--td {
  padding: 1em 10px !important;
  border-bottom: 1px solid #e9e9e9 !important;
}

td.jet-wc-product-table-col--td.jet-wc-product-table-col--type-product-name {
  text-transform: capitalize !important;
}
/* Comment Popup Styles */
.comment-popup {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    max-width: 300px;
    word-wrap: break-word;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    line-height: 1.4;
    border: 1px solid #555;
}

.comment-popup[style*="display: block"] {
    opacity: 1;
}

.comment-popup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    margin-top: -4px;
    border: 4px solid transparent;
    border-right-color: #333;
}

/* When popup is positioned to the left */
.comment-popup.popup-left::before {
    left: auto;
    right: -8px;
    border-right-color: transparent;
    border-left-color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comment-popup {
        max-width: 250px;
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* Comment cell styling enhancement */
.jet-wc-product-table-col--type-product-meta[data-column-name="Comments"] {
    cursor: help;
    position: relative;
}

.jet-wc-product-table-col--type-product-meta[data-column-name="Comments"]:hover {
    background-color: rgba(0, 123, 186, 0.05);
}

/* Mail cell styling enhancement */
.jet-wc-product-table-col--type-product-meta[data-column-name="Mail"] {
    cursor: copy;
    position: relative;
    user-select: all;
}

.jet-wc-product-table-col--type-product-meta[data-column-name="Mail"]:hover {
    background-color: rgba(0, 123, 186, 0.05);
}

/* Email copy notification styles */
.email-copy-notification {
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    max-width: 300px;
    word-wrap: break-word;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-copy-notification.error {
    background: #dc3545;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive notification positioning */
@media (max-width: 768px) {
    .email-copy-notification {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
        max-width: none;
        font-size: 13px;
        padding: 10px 15px;
    }
}

/* Column Visibility Controls */
.jet-column-visibility-container {
    display: flex;
    align-items: center;
    gap: 10px;
 /*   margin-bottom: 15px; */




}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: #ffffff !important;
    border: 1px solid #ddd !important;
    color: #6c757d !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    cursor: pointer !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: none !important;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 16px !important;
    vertical-align: middle;
    white-space: nowrap;
}
.dropbtn svg:hover,.jet-wc-bulk-search-button svg:hover {
  stroke:#ffffff !important;
}
.dropbtn:hover {
  background-color: #13b981 !important; border-color: #13b981 !important; color: white !important;
  
}

.dropbtn svg {
    width: 20px;
    height: 20px;
    stroke: #555;
    flex-shrink: 0;
}

.dropbtn:hover svg {
    stroke: #333;
}

.dropbtn span {
    font-size: 14px;
}

/* Fallback styles for icons when FontAwesome is not loaded */
.control-btn i:not(.fas):not(.fa):not(.far) {
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: bold;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 6px;
    border: 1px solid #ddd;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    top: 100%;
    left: 0;
    margin-top: 5px;
    padding: 0;
}

.dropdown-content.show {
    display: block;
    z-index: 9999;
}

/* Dropdown header */
.dropdown-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    padding: 8px 12px;
    border-bottom: 1px solid #e0e0e0;
    margin: 0;
}

.dropdown-reset-btn {
    background: none;
    border: none;
    color: #666 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    padding: 0 !important;
    background: white !important;
    text-decoration: underline;
    transition: all 0.2s ease;
    margin-left: auto;
}

.dropdown-reset-btn:hover {
    text-decoration: none;
    color: #333;
}

/* Ensure dropdown is properly clickable */
.dropdown-content input[type="checkbox"] {
    margin-right: 8px;
    flex-shrink: 0;
}

.dropdown-content label {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
}

.dropdown-content label:hover {
    background-color: #f5f5f5;
}

#checkbox-container {
    padding: 8px 0;
}

.visible-checkboxes,
#hidden-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/*
#hidden-checkboxes {
    border-top: 1px solid #eee;
    margin-top: 8px;
    padding-top: 8px;
}*/

.column-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.column-checkbox-label:hover {
    background-color: #f5f5f5;
}

.column-checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: #007cba;
}

.export-btn {
    background: #2563eb !important;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.export-btn:hover {
    background: #1d4ed8 !important;
}

/* Unified Export Dropdown */
.jet-unified-export-dropdown {
    position: relative;
    display: flex;
    gap: 10px;
    vertical-align: middle;
}

.jet-unified-export-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    border-radius: 16px !important;
    padding: 8px 16px !important;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.jet-unified-export-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 9999;
    min-width: 220px;
    padding: 6px 0;
}

.jet-unified-export-content.show {
    display: block;
}

.jet-export-section-label {
    padding: 6px 14px 4px;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jet-export-section-divider {
    height: 1px;
    background: #eee;
    margin: 4px 0;
}

.jet-export-action {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 14px !important;
    border: none;
    background: none !important;
    font-size: 13px !important;
    color: #333 !important;
    cursor: pointer !important;
    text-align: left;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.jet-export-action:hover {
  background: #f0fff8 !important;
  color: #13b981 !important;
  box-shadow: none !important;
}

@media (max-width: 768px) {
    .jet-unified-export-content {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        max-width: 280px;
    }
}

.buttons_container {
    display: flex;
    gap: 5px;
}

.control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 40px;
    height: 40px;
    border: 1px solid #6c757d;
    background-color: white;
    color: #6c757d;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.control-btn:hover {
    background-color: #6c757d;
    color: white;
}

.control-btn i {
    font-size: 14px;
}

/* Select all column styling */
.select-all-column {
    width: 50px;
    text-align: center;
    padding: 8px 5px !important;
}

.select-all-column input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: #007cba;
    cursor: pointer;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.error {
    background-color: #dc3545;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .jet-column-visibility-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .buttons_container {
        justify-content: center;
    }
    
    .dropdown-content {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 300px;
        max-height: 60vh;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .notification {
        left: 10px;
        right: 10px;
        top: 10px;
        max-width: none;
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .select-all-column {
        width: 40px;
        padding: 5px 2px !important;
    }
    
    .export-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .dropbtn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* Table row hover effect for selected rows */
.jet-wc-product-table-row--body:has(.productCheckbox:checked) {
    background-color: rgba(0, 124, 186, 0.05);
}

.jet-wc-product-table-row--body:has(.productCheckbox:checked) td {
    background-color: rgba(0, 124, 186, 0.05) !important;
}

/* Ensure proper table layout and smooth loading */
/* Hide entire page content until table loading is complete */
body {
    background-color: white;
}

/* Initially hide table container to prevent flash during loading */
.jet-wc-product-table-container {
    display: none;
}

/* Show table container with smooth animation after loading */
body.jet-table-page-loaded .jet-wc-product-table-container {
    display: flex;
    animation: fadeInContent 0.5s ease-in-out forwards;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Table wrapper animations */
.jet-wc-product-table-wrapper {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
    height: 75vh;
    overflow: auto;
}

.jet-wc-product-table-wrapper.jet-table-loading {
    /* Keep table visible but slightly faded */
    opacity: 1;
    transform: scale(1) translateY(0);
}

.jet-wc-product-table-wrapper.jet-table-loaded {
    animation: tableSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes tableSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pagination loading and loaded animations */
.jet-wc-product-pager-block {
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.jet-wc-product-pager-block.jet-table-loading {
    /* Keep pagination visible but slightly faded */
    opacity: 1;
    transform: scale(1) translateY(0);
}

.jet-wc-product-pager-block.jet-table-loaded {
    animation: tableSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Loading overlay styling */
.jet-wc-product-table-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 6px;
    transition: opacity 0.3s ease;
}

.jet-loading-content {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 250px;
    animation: loadingPulse 1s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    }
}

.jet-loading-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.jet-progress-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jet-progress-bar {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.jet-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 4px;
    position: relative;
}

.jet-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.jet-progress-text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    min-width: 40px;
}


/* Keep filters always visible */
.jet-wc-product-filters {
    position: relative;
    z-index: 10;
    /* Filters never hide */
}

.jet-wc-product-table-container {
    position: relative;
}

.jet-wc-product-table {
    table-layout: fixed;
    width: 100%;
    transition: opacity 0.2s ease;
}

/* Preserve column widths during filter/pagination */
.jet-wc-product-table th,
.jet-wc-product-table td {
    width: auto;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Loading indicator */
.jet-wc-product-table-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.jet-wc-product-table-loading-overlay .loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007cba;
    border-radius: 50%;
    animation: jet-table-spin 1s linear infinite;
}

@keyframes jet-table-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Export checkbox styling */
.jet-export-master-checkbox,
.jet-export-item-checkbox {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

.jet-export-master-checkbox {
    display: block;
    /* margin: 0 auto; */

}
.jet-wc-product-active-tag--filter {
  max-width: 250px !important;
 /* overflow-x: scroll !important;*/
}

/* Export column header styling to prevent overlap */
.jet-wc-product-table-col--type-Export {
    white-space: nowrap;
    text-align: center;
    min-width: auto;
}

/* Export All button styling */
.jet-export-all-button {
    margin-left: 10px;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.2;
    background: #2563eb !important;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 400;
}

/* Export All button in column visibility container */
.jet-column-visibility-container .jet-export-all-button {
    margin-left: 10px;
    margin-right: 5px;
}

.jet-export-all-button:hover {
   background: #1d4ed8 !important;
}

.jet-export-all-button:focus {
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0073aa;
    outline: none;
}

.jet-export-all-button:disabled,
.jet-export-all-button.disabled {
    background-color: #ddd;
    border-color: #ddd;
    color: #999;
    cursor: not-allowed;
}

/* Export All button loading state */
.jet-export-all-button.loading {
    position: relative;
    color: transparent;
}

.jet-export-all-button.loading:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: jet-export-loading 0.8s linear infinite;
}

@keyframes jet-export-loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.jet-export-item-checkbox {
    display: block;
    /* margin: 0 auto; */
    margin-left: 8px !important;
}

/* Export column header styling */
.jet-wc-product-table-col--type-Export.jet-wc-product-table-col--th {
    width: 40px !important;
    text-align: center;
    padding: 12px 8px !important;
}

/* Active tags after export styling - match Export All button design */
.jet-active-tags-after-export {
    display: inline-block;
}

/* Export column visibility - Show for Admin and Customer, hide for others */
.jet-wc-product-table-col--type-Export {
    display: none;
}

.jet-table-permissions-admin .jet-wc-product-table-col--type-Export,
.jet-table-permissions-customer .jet-wc-product-table-col--type-Export {
    display: table-cell !important;
}

/* Permissions-based visibility - Hide elements for Mini Admin only */
.jet-table-permissions-mini-admin .jet-price-filter-buttons,
.jet-table-permissions-mini-admin #exportBtn,
.jet-table-permissions-mini-admin .export-btn,
.jet-table-permissions-mini-admin .jet-export-all-button,
.jet-table-permissions-mini-admin .export-all-dropdown,
.jet-table-permissions-mini-admin .jet-unified-export-dropdown,
.jet-table-permissions-mini-admin .jet-wc-product-table-col--type-Export {
    display: none !important;
}

/* test-shop-keeper page (ID 107661): first column padding */
.page-id-107661 .jet-wc-product-table-container th.jet-wc-product-table-col--type-product-name,
.page-id-107661 .jet-wc-product-table-container td.jet-wc-product-table-col--type-product-name {
    padding-left: 40px !important;
}

/* Constrain pret_achizitie column to content width */
.jet-wc-product-table-col--meta-pret_achizitie {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
}

/* Show pret_achizitie and example columns for Mini Admin with custom widths */
.jet-table-permissions-mini-admin .jet-wc-product-table-col--meta-pret_achizitie {
    display: table-cell !important;
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
}

.jet-table-permissions-mini-admin .jet-wc-product-table-col--meta-example {
    display: table-cell !important;
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
}

/* Customer permission - hide Edit column (product-elementor-template with meta-edit) */
.jet-table-permissions-customer .jet-wc-product-table-col--meta-edit,
.jet-table-permissions-customer .jet-wc-product-table-col--type-product-elementor-template.jet-wc-product-table-col--meta-edit {
    display: none !important;
}

.jet-active-tags-after-export .jet-wc-product-active-tags__list {
    display: inline-flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    align-items: center;
    vertical-align: middle;
}

.jet-active-tags-after-export .jet-wc-product-active-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #ffffff;
    color: #6c757d;
    border: 1px solid #ddd;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    cursor: default;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.jet-active-tags-after-export .jet-wc-product-active-tag:hover {
    background-color: #e0e0e0;
    border-color: #999;
}

.jet-active-tags-after-export .jet-wc-product-active-tag--clear-all {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    cursor: pointer;
    font-weight: 500;
}

.jet-active-tags-after-export .jet-wc-product-active-tag--clear-all:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.jet-active-tags-after-export .jet-wc-product-active-tag__remove {
    margin-left: 6px;
    color: #999;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.jet-active-tags-after-export .jet-wc-product-active-tag--clear-all .jet-wc-product-active-tag__remove {
    color: rgba(255, 255, 255, 0.8);
}

.jet-active-tags-after-export .jet-wc-product-active-tag__remove:hover {
    color: #333;
}

.jet-active-tags-after-export .jet-wc-product-active-tag--clear-all .jet-wc-product-active-tag__remove:hover {
    color: #fff;
}

/* Export column cell styling */
.jet-wc-product-table-col--type-Export.jet-wc-product-table-col--td {
    width: 60px !important;
    text-align: center;
    padding: 8px !important;
}

/* Selected row highlighting for export */ 
.jet-wc-product-table-row--body:has(.jet-export-item-checkbox:checked) {
    background-color: rgba(0, 123, 255, 0.08) !important;
}

.jet-wc-product-table-row--body:has(.jet-export-item-checkbox:checked) td {
    background-color: rgba(0, 123, 255, 0.08) !important;
}

.jet-wc-product-table-container th.jet-wc-product-table-col--th {
    color: #000000 !important;
    background-color: #f8f9fa !important;
    font-size: 16px;
    text-align: left;
    border: 0px none;
    padding: 10px 10px 10px 10px;
    /* padding: 1.5em !important; */
    vertical-align: middle !important;
    padding: 1.5em 0em 1.5em 0.5em !important;
}

/* Custom column width settings - Applied with higher specificity and !important */
.jet-wc-product-table .jet-wc-product-table-col--meta-da,
.jet-wc-product-table .jet-wc-product-table-col--meta-pa,
.jet-wc-product-table .jet-wc-product-table-col--meta-dr,
.jet-wc-product-table .jet-wc-product-table-col--meta-tf {
    width: 70px !important;
    min-width: 70px !important;
    max-width: 70px !important;
}

.jet-wc-product-table .jet-wc-product-table-col--meta-spam_score {
    width: 110px !important;
    min-width: 110px !important;
    max-width: 110px !important;
}

/* Only apply width rules when columns are visible */
.jet-wc-product-table .jet-wc-product-table-col--meta-insert_price:not([style*="display: none"]),
.jet-wc-product-table .jet-wc-product-table-col--meta-regular_price:not([style*="display: none"]) {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
}

.jet-wc-product-table .jet-wc-product-table-col--meta-sensitive_price:not([style*="display: none"]) {
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
}

.jet-wc-product-table .jet-wc-product-table-col--type-product-edit,
.jet-wc-product-table .jet-wc-product-table-col--type-product-delete {
    width: 70px !important;
    min-width: 70px !important;
    max-width: 70px !important;
}

/* Also apply to both th and td specifically */
.jet-wc-product-table th.jet-wc-product-table-col--meta-da,
.jet-wc-product-table td.jet-wc-product-table-col--meta-da,
.jet-wc-product-table th.jet-wc-product-table-col--meta-pa,
.jet-wc-product-table td.jet-wc-product-table-col--meta-pa,
.jet-wc-product-table th.jet-wc-product-table-col--meta-dr,
.jet-wc-product-table td.jet-wc-product-table-col--meta-dr,
.jet-wc-product-table th.jet-wc-product-table-col--meta-tf,
.jet-wc-product-table td.jet-wc-product-table-col--meta-tf {
    width: 70px !important;
    min-width: 70px !important;
    max-width: 70px !important;
}

.jet-wc-product-table th.jet-wc-product-table-col--meta-spam_score,
.jet-wc-product-table td.jet-wc-product-table-col--meta-spam_score {
    width: 110px !important;
    min-width: 110px !important;
    max-width: 110px !important;
}

/* Only apply width rules when columns are visible (not display: none) */
.jet-wc-product-table th.jet-wc-product-table-col--meta-insert_price:not([style*="display: none"]),
.jet-wc-product-table td.jet-wc-product-table-col--meta-insert_price:not([style*="display: none"]),
.jet-wc-product-table th.jet-wc-product-table-col--meta-regular_price:not([style*="display: none"]),
.jet-wc-product-table td.jet-wc-product-table-col--meta-regular_price:not([style*="display: none"]) {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
    flex: 0 0 120px !important;
    flex-basis: 120px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    box-sizing: border-box !important;
}

.jet-wc-product-table th.jet-wc-product-table-col--meta-sensitive_price:not([style*="display: none"]),
.jet-wc-product-table td.jet-wc-product-table-col--meta-sensitive_price:not([style*="display: none"]) {
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
    flex: 0 0 140px !important;
    flex-basis: 140px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    box-sizing: border-box !important;
}

/* Extra specific rules for insert_price to force fixed width only when visible */
table.jet-wc-product-table th.jet-wc-product-table-col.jet-wc-product-table-col--meta-insert_price:not([style*="display: none"]),
table.jet-wc-product-table td.jet-wc-product-table-col.jet-wc-product-table-col--meta-insert_price:not([style*="display: none"]) {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
    flex: 0 0 120px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Extra specific rules for sensitive_price to force fixed width only when visible */
table.jet-wc-product-table th.jet-wc-product-table-col.jet-wc-product-table-col--meta-sensitive_price:not([style*="display: none"]),
table.jet-wc-product-table td.jet-wc-product-table-col.jet-wc-product-table-col--meta-sensitive_price:not([style*="display: none"]) {
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
    flex: 0 0 140px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.jet-wc-product-table th.jet-wc-product-table-col--type-product-edit,
.jet-wc-product-table td.jet-wc-product-table-col--type-product-edit,
.jet-wc-product-table th.jet-wc-product-table-col--type-product-delete,
.jet-wc-product-table td.jet-wc-product-table-col--type-product-delete {
    width: 70px !important;
    min-width: 70px !important;
    max-width: 70px !important;
}

/* Specific styling for Elementor template columns with delete and edit meta classes */
th.jet-wc-product-table-col.jet-wc-product-table-col--th.jet-wc-product-table-col--type-product-elementor-template.jet-wc-product-table-col--meta-delete {
    width: 90px;
}

th.jet-wc-product-table-col.jet-wc-product-table-col--th.jet-wc-product-table-col--type-product-elementor-template.jet-wc-product-table-col--meta-edit {
    width: 90px;
}

/* Sticky table headers */
table caption+thead tr:first-child td, table caption+thead tr:first-child th, table colgroup+thead tr:first-child td, table colgroup+thead tr:first-child th, table thead:first-child tr:first-child td, table thead:first-child tr:first-child th {
    border-block-start: none;
    position: sticky;
    top: 0;
    z-index: 10;
}

th.jet-wc-product-table-col.jet-wc-product-table-col--th.jet-wc-product-table-col--type-product-elementor-template.jet-wc-product-table-col--meta-delete {
  border-top-right-radius: 16px;
}

th.jet-wc-product-table-col.jet-wc-product-table-col--th.jet-wc-product-table-col--type-Export {
  border-top-left-radius: 16px;
}
td.jet-wc-product-table-col.jet-wc-product-table-col--td.jet-wc-product-table-col--type-product-meta.jet-wc-product-table-col--meta-comments {
  max-height: 71px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}

input#jet-export-master-checkbox {
  margin-left: 10px;
}


table thead:first-child tr:first-child td, table thead:first-child tr:first-child th {
  border-block-start: none;
  position: sticky;
  top: 0;
  z-index: 10;
}

.jet-wc-product-table-wrapper.jet-wc-product-table-wrapper--mobile-moveable {
  border: 1px solid #dddddd;
  border-radius: 16px;
  height: 75vh;
  overflow-y: auto;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
  background: #10b981 !important;
  color: #ffffff !important;
  border-radius: 16px;
}
th.jet-wc-product-table-col.jet-wc-product-table-col--th.jet-wc-product-table-col--type-product-name {
  width: 260px !important;
  min-width: 260px !important;
  max-width: 260px !important;
}

/* Mail and Comments column widths */
th.jet-wc-product-table-col.jet-wc-product-table-col--th.jet-wc-product-table-col--type-product-meta.jet-wc-product-table-col--meta-mail.jet-wc-product-table-col--collpased-body,
th.jet-wc-product-table-col.jet-wc-product-table-col--th.jet-wc-product-table-col--type-product-meta.jet-wc-product-table-col--meta-comments.jet-wc-product-table-col--collpased-body {
  width: 200px !important;
  min-width: 200px !important;
  max-width: 200px !important;
}

th.jet-wc-product-table-col.jet-wc-product-table-col--th.jet-wc-product-table-col--type-product-meta.jet-wc-product-table-col--meta-category.jet-wc-product-table-col--sortable.jet-wc-product-table-col--collpased-body,
th.jet-wc-product-table-col.jet-wc-product-table-col--th.jet-wc-product-table-col--type-product-meta.jet-wc-product-table-col--meta-traffic.jet-wc-product-table-col--sortable.jet-wc-product-table-col--collpased-body,
th.jet-wc-product-table-col.jet-wc-product-table-col--th.jet-wc-product-table-col--type-product-meta.jet-wc-product-table-col--meta-sensitive_price.jet-wc-product-table-col--sortable.jet-wc-product-table-col--collpased-body,
th.jet-wc-product-table-col.jet-wc-product-table-col--th.jet-wc-product-table-col--type-product-meta.jet-wc-product-table-col--meta-casino_price.jet-wc-product-table-col--sortable.jet-wc-product-table-col--collpased-body {
  width: 100px;
}

th.jet-wc-product-table-col.jet-wc-product-table-col--th.jet-wc-product-table-col--type-product-meta.jet-wc-product-table-col--meta-_regular_price.jet-wc-product-table-col--sortable.jet-wc-product-table-col--collpased-body {
  width: 120px;
}

.woocommerce nav.woocommerce-pagination ul {
  border-radius: 16px;
  border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li {
  border-right:none;
}

/* WooCommerce Pagination Styling */
.jet-wc-product-pager.woocommerce-pagination {
  display: flex;
  justify-content: center;
}

.jet-wc-product-pager .page-numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.jet-wc-product-pager__item {
  display: inline-flex;
  align-items: center !important;
  justify-content: center !important;  
  min-width: 2.5rem !important;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  color: hsl(0deg 0% 43.14%) !important;
  background: hsl(0, 0%, 100%) !important;
  border: 1px solid hsl(220, 13%, 91%) !important;
  border-radius: 16px !important;
  transition: all 0.2s ease-in-out !important;
  cursor: pointer !important;
}

.jet-wc-product-pager__item:hover {
  color: hsl(217, 91%, 60%) !important;
  background: hsl(217, 91%, 98%) !important;
  border-color: hsl(217, 91%, 60%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px hsla(217, 91%, 60%, 0.15) !important;
}

.jet-wc-product-pager__item--current {
  color: white !important;
  background: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(262, 83%, 58%)) !important;
  border-color: transparent !important;
}

.jet-wc-product-pager__item.dots {
  background: transparent !important;
  border: none !important;
  color: hsl(215, 20%, 65%) !important;
  cursor: default !important;
  font-weight: 600 !important;
}

.jet-wc-product-pager__item.dots:hover {
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .jet-wc-product-pager__item {
    min-width: 2rem !important;
    height: 2rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
}
.woocommerce .woocommerce-pagination ul.page-numbers li, .woocommerce-page .woocommerce-pagination ul.page-numbers li {
  display: inline-block;
  margin-right: 8px;
}



/* Initial Loading Overlay */
.jet-wc-initial-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    min-height: 300px;
}

.jet-wc-initial-loading-overlay .jet-loading-content {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 250px;
    animation: loadingPulse 1s ease-in-out infinite;
}

.jet-wc-initial-loading-overlay .jet-loading-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.jet-wc-initial-loading-overlay .jet-progress-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jet-wc-initial-loading-overlay .jet-progress-bar {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.jet-wc-initial-loading-overlay .jet-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 4px;
    position: relative;
}

.jet-wc-initial-loading-overlay .jet-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 1.5s infinite;
}

.jet-wc-initial-loading-overlay .jet-progress-text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    min-width: 40px;
}

/* Export Progress Overlay */
.jet-export-progress-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: opacity 0.3s ease;
}

.jet-export-progress-overlay .jet-loading-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 350px;
    text-align: center;
}

.jet-export-progress-overlay .jet-loading-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.jet-export-progress-overlay .jet-progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jet-export-progress-overlay .jet-progress-bar {
    flex: 1;
    height: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.jet-export-progress-overlay .jet-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 5px;
    position: relative;
}

.jet-export-progress-overlay .jet-progress-text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    min-width: 80px;
}

/* Export Success Modal */
.jet-export-success {
    text-align: center;
}

.jet-success-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.jet-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 15px;
}

.jet-success-message {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
}

.jet-success-message .jet-sheets-link {
    display: inline-block;
    background: #4CAF50;
    color: white !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.jet-success-message .jet-sheets-link:hover {
    background: #45a049;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    text-decoration: none;
}

/* Export Error Modal */
.jet-export-error {
    text-align: center;
}

.jet-error-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.jet-error-title {
    font-size: 24px;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 15px;
}

.jet-error-message {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Close Button */
.jet-close-modal-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.jet-close-modal-btn:hover {
    background: #5a6268;
}

/* Bulk Search Button */
.jet-wc-bulk-search-button {
    background: #ffffff !important;
    border: 1px solid #ddd !important;
    color: #6c757d !important;
    cursor: pointer !important;
    padding: 8px 12px !important;
    display: inline-flex;
    align-items: center;
    box-shadow: none !important;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 16px !important;
    margin-left: 8px;
    vertical-align: middle;
}

.jet-wc-bulk-search-button:hover {
    background-color: #13b981 !important; border-color: #13b981 !important; color: white !important;
}

.jet-wc-bulk-search-button svg {
    width: 20px;
    height: 20px;
}

/* Remove old positioning rule */

/* Bulk Search Modal */
.jet-bulk-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.jet-bulk-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.jet-bulk-search-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.jet-bulk-search-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #18b981;
}

.jet-bulk-search-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.jet-bulk-search-close {
  background: none;
  border: none;
  font-size: 28px !important;
  color: white !important;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  background: #13b981 !important;
  border: 1px solid white;
}

.jet-bulk-search-close:hover {
    background-color: white !important;
    border-color: white !important;
    color: #6b7280 !important;
}

.jet-bulk-search-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.jet-bulk-search-body p {
    margin: 0 0 15px 0;
    color: #6b7280;
    font-size: 14px;
}

#jet-bulk-search-textarea {
    width: 100%;
    min-height: 200px;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    box-sizing: border-box;
}

#jet-bulk-search-textarea:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.jet-bulk-search-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.jet-bulk-search-footer button {
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    color: #374151 !important;
    padding: 10px 20px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.jet-bulk-search-cancel {
    background: white;
    border: 1px solid #d1d5db;
    color: #374151;
}

.jet-bulk-search-cancel:hover {
    background-color: #13b981 !important;
    border-color: #13b981 !important;
    color: white !important;
}

.jet-bulk-search-content .jet-bulk-search-footer button.jet-bulk-search-submit {
    background-color: #13b981 !important;
    border: 1px solid #13b981 !important;
    color: white !important;
}

.jet-bulk-search-content .jet-bulk-search-footer button.jet-bulk-search-submit:hover {
    background-color: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    color: #374151 !important;
}

/* Bulk Search Divider */
.jet-bulk-search-divider {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #e5e7eb;
}

/* Bulk Search Upload Section */
.jet-bulk-search-upload {
    margin-top: 15px;
}

.jet-bulk-search-upload p {
    margin: 0 0 10px 0;
    color: #6b7280;
    font-size: 14px;
}

.jet-bulk-search-upload-btn {
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    color: #374151 !important;
    padding: 8px 15px !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.jet-bulk-search-upload-btn:hover {
    background-color: #13b981 !important;
    border-color: #13b981 !important;
    color: white !important;
}

.jet-bulk-search-upload-btn .dashicons {
    font-size: 16px !important;
    width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
}

.jet-bulk-search-filename {
    display: inline-block;
    margin-left: 10px;
    color: #10b981;
    font-size: 13px;
    font-style: italic;
}

.jet-bulk-search-upload-error {
    margin-top: 10px;
    padding: 10px 14px;
    background: #fef2f2;
    color: #dc2626;
    border-left: 4px solid #ef4444;
    border-radius: 6px;
    font-size: 13px;
}

/* Position the search input container relative for button positioning */
.jet-wc-product-filter-block {
    position: relative;
}

.jet-wc-product-table-clone-container {
  display: none !important;
}

/* ============================================
   Category Badge Styles
   Auto-colored badges for category display
   ============================================ */

.jpt-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.jpt-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Default colors (before JS applies) */
.jpt-badge:not([data-badge-colored]) {
    background-color: #e0e0e0;
    color: #333;
}

/* Badge container for multiple categories */
.jpt-badge-container {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* Multiple badges in same cell */
.jet-wc-product-table td .jpt-badge + .jpt-badge {
    margin-left: 5px;
}

/* ============================================
   Default width for columns without explicit width set in admin
   Fixes columns collapsing to 0px (table-layout: fixed ignores min-width)
   ============================================ */
.jet-wc-product-table th.jet-wc-product-table-col--meta-last_post,
.jet-wc-product-table td.jet-wc-product-table-col--meta-last_post {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
}

.jet-wc-product-table th.jet-wc-product-table-col--meta-month_added,
.jet-wc-product-table td.jet-wc-product-table-col--meta-month_added {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
}

.jet-wc-product-table th.jet-wc-product-table-col--meta-location,
.jet-wc-product-table td.jet-wc-product-table-col--meta-location {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
}

.jet-wc-product-table th.jet-wc-product-table-col--meta-sponsored,
.jet-wc-product-table td.jet-wc-product-table-col--meta-sponsored {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
}

.jet-wc-product-table th.jet-wc-product-table-col--meta-sponsored_comments,
.jet-wc-product-table td.jet-wc-product-table-col--meta-sponsored_comments {
    width: 200px !important;
    min-width: 200px !important;
    max-width: 200px !important;
}

.jet-wc-product-table th.jet-wc-product-table-col--meta-keywords,
.jet-wc-product-table td.jet-wc-product-table-col--meta-keywords {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
}

/*# sourceMappingURL=table.css.map */
