diff --git a/projects/common/element-components/compound-elements/drop-list.component.ts b/projects/common/element-components/compound-elements/drop-list.component.ts
index 6066b05c422c96a0dec92b1605067d2065e31194..a6b8639548b0b92faee4de6c03709ea69247545c 100644
--- a/projects/common/element-components/compound-elements/drop-list.component.ts
+++ b/projects/common/element-components/compound-elements/drop-list.component.ts
@@ -51,8 +51,9 @@ import { FormElementComponent } from '../../form-element-component.directive';
   `,
   styles: [
     '.list-container {display: flex; flex-direction: column; width: 100%; height: 100%;}',
-    '.list {width: calc(100% - 4px); height: calc(100% - 4px);}',
-    '.item {background-color: lightblue; margin: 5px; border-radius: 10px; padding: 10px;}',
+    '.list {width: calc(100% - 4px); height: calc(100% - 4px); border-radius: 10px}',
+    '.item {border-radius: 10px; padding: 10px;}',
+    '.item:not(:last-child) {margin-bottom: 5px;}',
     '.error-message {font-size: 75%; margin-top: 10px;}',
     '.cdk-drag-preview {padding: 8px 20px; border-radius: 10px}',
     '.drag-placeholder {background-color: lightgrey; border: dotted 3px #999; padding: 10px;}',