:root {
  /** Brand colors */
  --tblr-brand: #52a1ab;

  /** Primary Theme Color */
  --tblr-primary: #52a1ab;

  /** Facoltativo: tonalità derivate */
  --tblr-primary-rgb: 82, 161, 171;
  --tblr-primary-light: #6bb5be;
  --tblr-primary-dark: #417f88;
}

#product-table {
    margin-bottom: 2rem;
}

#product-table .tabulator {
    font-family: var(--tblr-font-sans-serif);
    font-size: 0.875rem;
    background-color: #fff;
    border-radius: 0.375rem;
    border: 1px solid #d0d7de;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

#product-table .tabulator-header {
    background-color: #f8f9fa;
    font-weight: 600;
}

#product-table .tabulator-row {
    border-bottom: 1px solid #e9ecef;
}

#product-table .tabulator-row:hover {
    background-color: #f1f3f5;
}

#product-table .tabulator-cell {
    padding: 0.5rem 0.75rem;
}


/* Migliora la visibilità delle righe già presenti */
.tabulator-row.product-exists {
    background-color: #fff3cd !important;
}

/* Pulsante allineato */
#save-btn {
    float: right;
}

.card.disabled,
.card.disabled:hover {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.card .step-number {
    font-size: 0.9rem;
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 0.5rem;
    display: block;
}