diff --git a/webapp/src/components/formatMenu.tsx b/webapp/src/components/formatMenu.tsx
index 9afe38a..1c3be38 100644
--- a/webapp/src/components/formatMenu.tsx
+++ b/webapp/src/components/formatMenu.tsx
@@ -34,7 +34,7 @@ const FormatMenu = (properties: FormatMenuProps) => {
>
{properties.children}
-
+
{
);
};
+const StyledMenu = styled(Menu)`
+ & .MuiPaper-root {
+ border-radius: 8px;
+ padding: 4px 0px;
+ margin-left: -4px; // Starting with a small offset
+ }
+ & .MuiList-root {
+ padding: 0;
+ }
+`;
+
const MenuItemWrapper = styled(MenuItem)`
display: flex;
justify-content: space-between;