diff --git a/frontend/src/pages/DocumentDetailsPage.tsx b/frontend/src/pages/DocumentDetailsPage.tsx
index 1a2055f..7c7a22c 100644
--- a/frontend/src/pages/DocumentDetailsPage.tsx
+++ b/frontend/src/pages/DocumentDetailsPage.tsx
@@ -345,15 +345,37 @@ const DocumentDetailsPage: React.FC = () => {
{
+ e.currentTarget.style.transform = 'scale(1.02)';
+ e.currentTarget.style.boxShadow = '0 4px 12px rgba(0,0,0,0.15)';
+ }}
+ onMouseLeave={(e) => {
+ e.currentTarget.style.transform = 'scale(1)';
+ e.currentTarget.style.boxShadow = 'none';
}}
/>
) : (
- getFileIcon(document.mime_type)
+
+ {getFileIcon(document.mime_type)}
+
)}