Index: TFP-WebServer/MarkersMod/WebMod/styling.css
===================================================================
--- TFP-WebServer/MarkersMod/WebMod/styling.css	(revision 460)
+++ TFP-WebServer/MarkersMod/WebMod/styling.css	(revision 460)
@@ -0,0 +1,13 @@
+#markers-form {
+  display: flex;
+  flex-direction: row;
+  justify-content: space-between;
+  align-items: center;
+  margin-top: 1rem;
+  margin-bottom: 1rem;
+}
+
+#markers-form label {
+  margin-right: 1rem;
+}
+
Index: TFP-WebServer/MarkersMod/src/Markers.openapi.yaml
===================================================================
--- TFP-WebServer/MarkersMod/src/Markers.openapi.yaml	(revision 459)
+++ TFP-WebServer/MarkersMod/src/Markers.openapi.yaml	(revision 460)
@@ -2,5 +2,5 @@
 info:
   title: Markers
-  version: 1
+  version: '1'
 
 components:
@@ -80,5 +80,5 @@
                 $ref: '#/components/schemas/MarkersList'
               meta:
-                $ref: '#/components/schemas/ResultEnvelopeMeta'
+                $ref: './openapi.yaml#/components/schemas/ResultEnvelopeMeta'
             required:
               - data
@@ -96,5 +96,5 @@
                 format: uuid
               meta:
-                $ref: '#/components/schemas/ResultEnvelopeMeta'
+                $ref: './openapi.yaml#/components/schemas/ResultEnvelopeMeta'
             required:
               - data
@@ -110,4 +110,5 @@
         type: string
         format: uuid
+      description: ID of marker to fetch
 
 
@@ -118,5 +119,5 @@
         - Map
       summary: Markers list
-      description: Fetch a list of the all defined map markers
+      description: Fetch a list of all defined map markers
       operationId: markers.get
       responses:
@@ -141,7 +142,7 @@
             Invalid request body, errorCode will be one of 'NO_OR_INVALID_X',
             'NO_OR_INVALID_Y'
-          $ref: '#/components/responses/HttpEmptyEnvelopedResponse'
+          $ref: './openapi.yaml#/components/responses/HttpEmptyEnvelopedResponse'
         403:
-          $ref: '#/components/responses/Unauthorized'
+          $ref: './openapi.yaml#/components/responses/Unauthorized'
       security:
         - apiTokenName: []
@@ -164,5 +165,5 @@
         404:
           description: Marker ID not found, errorCode will be 'ID_NOT_FOUND'
-          $ref: '#/components/responses/HttpEmptyEnvelopedResponse'
+          $ref: './openapi.yaml#/components/responses/HttpEmptyEnvelopedResponse'
 
     put:
@@ -184,10 +185,10 @@
             Invalid request body, errorCode will be one of 'NO_OR_INVALID_X',
             'NO_OR_INVALID_Y'
-          $ref: '#/components/responses/HttpEmptyEnvelopedResponse'
+          $ref: './openapi.yaml#/components/responses/HttpEmptyEnvelopedResponse'
         404:
           description: Marker ID not found, errorCode will be 'ID_NOT_FOUND'
-          $ref: '#/components/responses/HttpEmptyEnvelopedResponse'
+          $ref: './openapi.yaml#/components/responses/HttpEmptyEnvelopedResponse'
         403:
-          $ref: '#/components/responses/Unauthorized'
+          $ref: './openapi.yaml#/components/responses/Unauthorized'
       security:
         - apiTokenName: []
@@ -206,10 +207,10 @@
         204:
           description: Deleted marker
-          $ref: '#/components/responses/HttpEmptyEnvelopedResponse'
+          $ref: './openapi.yaml#/components/responses/HttpEmptyEnvelopedResponse'
         404:
           description: Marker ID not found
-          $ref: '#/components/responses/HttpEmptyEnvelopedResponse'
+          $ref: './openapi.yaml#/components/responses/HttpEmptyEnvelopedResponse'
         403:
-          $ref: '#/components/responses/Unauthorized'
+          $ref: './openapi.yaml#/components/responses/Unauthorized'
       security:
         - apiTokenName: []
