diff --git a/app/static/css/search.css b/app/static/css/search.css
new file mode 100644
index 0000000..e456218
--- /dev/null
+++ b/app/static/css/search.css
@@ -0,0 +1,27 @@
+.autocomplete {
+ position: relative;
+ display: inline-block;
+ width: 100%;
+}
+
+.autocomplete-items {
+ position: absolute;
+ border-bottom: none;
+ border-top: none;
+ z-index: 99;
+
+ /*position the autocomplete items to be the same width as the container:*/
+ top: 100%;
+ left: 0;
+ right: 0;
+}
+
+.autocomplete-items div {
+ padding: 10px;
+ cursor: pointer;
+}
+
+details summary {
+ padding: 10px;
+ font-weight: bold;
+}
diff --git a/app/templates/display.html b/app/templates/display.html
index 9913f55..4eb0512 100644
--- a/app/templates/display.html
+++ b/app/templates/display.html
@@ -5,6 +5,7 @@
+