Reading List Organizer
Curate, track, and manage your personal library.
Add a New Book
My Reading List
No books found. Add one to start your list or adjust your filter.
`; } else { filteredBooks.forEach(book => { const bookCard = document.createElement('div'); bookCard.className = 'book-card-animation p-4 border rounded-lg bg-white flex flex-col justify-between'; bookCard.dataset.id = book.id; const statusColors = { 'To Read': 'bg-blue-100 text-blue-800', 'Reading': 'bg-yellow-100 text-yellow-800', 'Finished': 'bg-green-100 text-green-800' }; bookCard.innerHTML = `${book.title}
${book.status}by ${book.author}
${book.genre}
My Reading List
| Title | Author | Genre | Status |
|---|---|---|---|
| ${book.title} | ${book.author} | ${book.genre} | ${book.status} |
