    /* ── TABLE CARD ── */
    h2 {
    color: #8a8585;
    padding-bottom: 10px;
    }
  .inbox-card {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 2px;
    overflow: auto;

  }

  /* ── TOOLBAR ── */
  .inbox-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    border-bottom: 1.5px solid #e8e8e8;
    background: #fafafa;
  }
  .toolbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .toolbar-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
  }
  .toolbar-count {
    font-size: 0.75rem;
    color: #555;
    font-weight: 500;
  }

  /* ── TABLE ── */
  table {
    width: 100%;
    border-collapse: collapse;
  }
  thead th {
    padding: 0.6rem 1.25rem;
    text-align: left;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    border-bottom: 1.5px solid #e8e8e8;
    background: #fafafa;
    font-weight: 500;
    white-space: nowrap;
  }
  thead th:first-child { padding-left: 1.5rem; }
  thead th.col-remove { text-align: center; }

  tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.12s ease;
    cursor: pointer;
  }
  tbody tr:last-child { border-bottom: none; }
  tbody tr:hover { background: #f7f7f5; }
  tbody tr.unread { background: #fff; }
  tbody tr.unread td.col-title { font-weight: 600; }

  td {
    padding: 0.85rem 1.25rem;
    vertical-align: middle;
    font-size: 0.875rem;
    color: #333;
  }
  td:first-child { padding-left: 1.5rem; }

  .col-title a {
    color: #111;
    text-decoration: none;
    font-size: 0.88rem;
    line-height: 1.4;
    display: block;
    max-width: 580px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .col-title a:hover { text-decoration: underline; }

  .col-source {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    color: #555;
    white-space: nowrap;
  }
  .col-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    color: #888;
    white-space: nowrap;
  }
  .col-remove { text-align: center; }

  /* Remove button */
  .btn-remove {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    font-size: 0.68rem;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #fff;
    color: #111;
    border: 1.5px solid #ccc;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.12s ease;
  }
  .btn-remove:hover {
    background: #111;
    color: #fff;
    border-color: #111;
  }

  /* ── EMPTY STATE ── */
  .empty-state {
    padding: 5rem 2rem;
    text-align: center;
  }
  .empty-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.2;
  }
  .empty-state p { color: #999; font-size: 0.875rem; line-height: 1.7; }

  /* ── PAGINATION ── */
  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1.25rem;
    border-top: 1.5px solid #e8e8e8;
    background: #fafafa;
  }
  .pagination a,
  .pagination .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    border: 1.5px solid #ddd;
    text-decoration: none;
    color: #333;
    border-radius: 2px;
    transition: all 0.12s;
  }
  .pagination a:hover { background: #111; color: #fff; border-color: #111; }
  .pagination .current {
    background: #111;
    color: #fff;
    border-color: #111;
  }
  .pagination a.prev-next {
    width: auto;
    padding: 0 0.75rem;
    letter-spacing: 0.05em;
    font-size: 0.65rem;
    text-transform: uppercase;
  }
