diff --git a/SAS/TMSS/frontend/tmss_webapp/src/layout/sass/_timeline.scss b/SAS/TMSS/frontend/tmss_webapp/src/layout/sass/_timeline.scss
index 2a2741b88de383734c4f85e714c3505ab7837a59..315816cdfc20dc5d094051cf6c165cc25e6de3a7 100644
--- a/SAS/TMSS/frontend/tmss_webapp/src/layout/sass/_timeline.scss
+++ b/SAS/TMSS/frontend/tmss_webapp/src/layout/sass/_timeline.scss
@@ -620,7 +620,7 @@ $vh: 1vh;
 }
 
 .reserve-not-available {
-  background-color: black;
+  background-color: #212121;
   color: white;
 }
 
diff --git a/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/timeline.renderer.helper.js b/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/timeline.renderer.helper.js
index 612aa7b63ddfab2a6c62a40376044b4671f2a499..604e6907ea9210208a2846ef1c56d89b53aa0fef 100644
--- a/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/timeline.renderer.helper.js
+++ b/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/timeline.renderer.helper.js
@@ -32,7 +32,6 @@ function calculatePopPosition(evt) {
     };
 
     if (evt.clientY > window.screen.height / 2) {
-        //   popPosition.bottom = `${evt.clientY - evt.pageY + 30}px`;  
         popPosition.top = `${evt.pageY - 400}px`; // Bottem line position will not work here
     } else {
         popPosition.top = `${evt.pageY}px`;
diff --git a/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/toolbar/filters.helper.js b/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/toolbar/filters.helper.js
index 8b78832f98dfa2719e82cc2eb41a2bc423d1907a..3b118f24db516d1cecd4fb6a3008bcb0dd7f1cd0 100644
--- a/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/toolbar/filters.helper.js
+++ b/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/helpers/toolbar/filters.helper.js
@@ -275,7 +275,7 @@ export function getReservationTypeColorIndex(schedulability) {
         'fixed_time-dynamic': { bgColor: "lightgrey", color: "#585859" },
         'fixed_time-not_dynamic': { bgColor: '#585859', color: "white" },
         'not_fixed_time-dynamic': { bgColor: "#9b9999", color: "white" },
-        'other': { bgColor: "black", color: "white" }
+        'other': { bgColor: "#212121", color: "white" }
     };
 
     const key =