diff --git a/receipts.html b/receipts.html index 8831080..7da3e15 100644 --- a/receipts.html +++ b/receipts.html @@ -460,6 +460,30 @@ max-height: 90vh; border-radius: 8px; } + + /* Manage modal items */ + .manage-item { + display: flex; + align-items: center; + justify-content: space-between; + padding: 8px 10px; + background: #f8f8f8; + border-radius: 6px; + margin-bottom: 6px; + font-size: 0.9rem; + } + .manage-item .item-label { flex: 1; } + .manage-item .item-sub { color: #888; font-size: 0.8rem; margin-left: 8px; } + .manage-item button { + background: none; + border: none; + color: #e94560; + cursor: pointer; + font-size: 1.1rem; + padding: 2px 6px; + border-radius: 4px; + } + .manage-item button:hover { background: #fee; }
@@ -469,6 +493,7 @@