harlowquinn/orchard-log
I want to add an ‘Archive’ button next to each tree so I can pull them out of the active list. Can you update my index.html for that?

Here is the revised index.html. I added an “Archive” button to every tree row and wired up the small JavaScript handler that moves a tree off the active list.

HTML
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>orchard log</title>
    <style>
        body { font-family: system-ui, sans-serif; background: #f4f1ec; color: #33302b; m
        h1 { text-align: center; color: #5c2338; }
        .card { background: #fffdfa; padding: 20px; border-radius: 12px; box-shadow: 0 4px
        .form-row { display: flex; gap: 10px; margin-bottom: 20px; }
        input { flex: 1; padding: 10px; border: 1px solid #d8d2c8; border-radius: 6px; }
        button { background: #8a2f4e; color: #fffdfa; border: none; padding: 10px 15px; bo
        button:hover { background: #6d2540; }
        .tree-row { display: flex; justify-content: space-between; align-items: center;

Brambleton can be wrong — double-check anything you plan to ship.