<section class="admin-queue">
  <header class="aq-header">
    <h2>🗂️ Show & Tell — Admin Review Queue</h2>
    <div class="aq-controls">
      <select name="month_key" aria-label="Filter by Month">
        <option value="2025-08">August 2025</option>
        <option value="2025-07">July 2025</option>
      </select>
      <select name="status" aria-label="Filter by Status">
        <option value="">All Statuses</option>
        <option value="pending_approval" selected>Pending</option>
        <option value="approved">Approved</option>
        <option value="rejected">Rejected</option>
      </select>
      <select name="category" aria-label="Filter by Category">
        <option value="">All Categories</option>
        <option value="species">Species</option>
        <option value="hybrids">Hybrids</option>
        <option value="cattleyas">Cattleyas</option>
        <option value="intergenerics">Intergenerics</option>
      </select>
      <input type="search" placeholder="Search name, member, caption…" aria-label="Search">
      <button class="ghost">Export CSV</button>
    </div>
  </header>

  <form class="bulk-actions">
    <div class="bulk-bar">
      <label class="checkbox"><input type="checkbox" id="check-all"> Select all</label>
      <select name="bulk_action" aria-label="Bulk Action">
        <option value="">Bulk actions…</option>
        <option value="approve">Approve</option>
        <option value="reject">Reject</option>
        <option value="remove">Remove</option>
      </select>
      <button class="ghost" type="submit">Apply</button>
    </div>

    <table class="aq-table">
      <thead>
        <tr>
          <th></th>
          <th>Thumbnail</th>
          <th>Plant</th>
          <th>Category</th>
          <th>Member</th>
          <th>Caption</th>
          <th>Status</th>
          <th>Submitted</th>
          <th>Flags</th>
          <th>Actions</th>
        </tr>
      </thead>
      <tbody>

        <!-- Row -->
        <tr>
          <td><input type="checkbox" name="row_sel"></td>
          <td><img src="thumb1.jpg" alt="Laelia anceps thumbnail" class="thumb"></td>
          <td>
            <strong>Laelia anceps</strong><br>
            <small>ID: ENT-1024</small>
          </td>
          <td><span class="chip">Species</span></td>
          <td>Jeff Parham<br><small>jeff@fcos.org</small></td>
          <td class="truncate">Brought to bloom on the Central Coast 🌊</td>
          <td><span class="status pending">Pending</span></td>
          <td><time datetime="2025-08-06T18:20:00-07:00">Aug 6, 6:20 PM PT</time></td>
          <td>
            <span class="flag dupe" title="Possible duplicate">Dup?</span>
            <span class="flag late hidden">Late</span>
          </td>
          <td class="row-actions">
            <button type="button" class="small" data-action="preview">Preview</button>
            <button type="button" class="small approve">Approve</button>
            <button type="button" class="small reject">Reject</button>
            <button type="button" class="small ghost">Edit</button>
            <button type="button" class="small danger">Remove</button>
          </td>
        </tr>

        <!-- More rows… -->

      </tbody>
    </table>

    <nav class="pager">
      <button class="ghost" disabled>« Prev</button>
      <span>Page 1 of 8</span>
      <button class="ghost">Next »</button>
    </nav>
  </form>
</section>