 /* ============== TABLE CARD (de C) ============== */
  .table-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
  }
  .action-bar {
    padding: 14px 24px;
    background: linear-gradient(90deg, #e8f0d4 0%, #f0f5e0 100%);
    border-bottom: 1px solid #c8e09a;
    border-left: 3px solid #6FA830;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    display: none;
  }
  
  .action-bar.active {
    display: flex;
  }
  .action-bar .selected-count {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: #1A0875;
    font-size: 14px;
  }
  .action-bar .selected-count strong { font-weight: 600; }
  .actions-bulk { margin-left: auto; display: flex; gap: 6px; flex-wrap: wrap; }
  .actions-bulk button {
    padding: 6px 14px; font-size: 12.5px;
    background: transparent;
    border: 1px solid var(--navy);
    color: var(--navy);
    border-radius: 999px;
    font-weight: 500;
    transition: all 0.15s;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .actions-bulk button:hover { background: var(--navy); color: #fff; }
  .actions-bulk button.danger {
    border-color: var(--st-print-dot);
    color: var(--st-print-fg);
  }
  .actions-bulk button.danger:hover {
    background: var(--st-print-dot); color: #fff;
  }

  table { font-size: 14px; }
  thead { background: transparent; }
  th {
    text-align: left;
    padding: 18px 24px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line-soft);
  }
  th.center, td.center { text-align: center; }
  tbody tr {
    border-bottom: 1px solid var(--line-soft);
    transition: background 0.15s;
  }
  tbody tr:last-child { border-bottom: none; }
  tbody tr:hover { background: var(--paper); }
  tbody tr.selected { background: var(--blue-soft); }
  td { padding: 20px 24px; vertical-align: middle; }
  td.num-c {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
  }
  td.num-c a { color: inherit; transition: color 0.12s; }
  td.num-c a:hover { color: var(--blue-bright); }
  .article-id {
    font-size: 13px; color: var(--ink-soft);
    font-variant-numeric: tabular-nums;
    margin-top: 1px;
  }

  
  /* ============== CLIENT LOGO CELL (logos en vez de nombre) ============== */
  .client-logo-cell {
    display: flex; align-items: center; gap: 12px;
  }
  .client-logo {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }
  .client-logo svg,
  .client-logo img { width: 100%; height: 100%; }
  .client-logo-name {
    font-weight: 500;
    font-size: 14px;
    font-weight: bold;
    color: var(--ink);
  }
  .client-logo-sub {
    font-size: 12px; color: var(--ink-soft);
    margin-top: 1px;
  }
  .color-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  font-size: 13px;
  background: var(--paper);
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 500;
}
.color-pill .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
}
.molds-table th {
  padding: 14px 16px;
  background: var(--paper);
}
  /* ============== PAGINATOR (estilo Google) ============== */
  .table-foot-c {
    padding: 18px 24px;
    border-top: 1px solid var(--line-soft);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; color: var(--ink-soft);
    flex-wrap: wrap; gap: 12px;
  }
  .google-paginator {
    display: flex; align-items: center; gap: 4px;
  }
  .google-paginator button {
    min-width: 32px; height: 32px;
    padding: 0 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ink-soft);
    font-size: 13px; font-weight: 500;
    transition: all 0.12s;
    font-variant-numeric: tabular-nums;
  }
  .google-paginator button:hover {
    background: var(--paper);
    color: var(--navy);
  }
  .google-paginator button.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }
  .google-paginator .arrow {
    color: var(--blue-bright);
  }
  .google-paginator .arrow:hover {
    background: var(--blue-soft);
  }
  .google-paginator .ellipsis {
    color: var(--muted);
    cursor: default;
  }
