diff --git a/frontend/src/App.css b/frontend/src/App.css
index 3475243..48a5859 100644
--- a/frontend/src/App.css
+++ b/frontend/src/App.css
@@ -70,6 +70,22 @@ h2 {
font-size: 0.85rem;
}
+.project-delete {
+ background: #c0392b;
+ color: white;
+ border: none;
+ border-radius: 4px;
+ padding: 0.2rem 0.5rem;
+ font-size: 0.8rem;
+ cursor: pointer;
+ margin-left: 0.5rem;
+ flex-shrink: 0;
+}
+
+.project-delete:hover {
+ background: #e74c3c;
+}
+
.back-btn {
padding: 0.4rem 1rem;
font-size: 0.9rem;
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 8a6a4d8..cedc770 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -54,6 +54,16 @@ function ProjectList({
{new Date(p.created_at).toLocaleString()}
+
))}