diff --git a/backend/ui/index.html b/backend/ui/index.html
index 3651e5d..10a5b4f 100644
--- a/backend/ui/index.html
+++ b/backend/ui/index.html
@@ -7,7 +7,6 @@
@@ -119,6 +126,40 @@
position: absolute;
bottom: 17px;
}
+
+ #showIP {
+ background-color: rgb(63, 63, 63);
+ display: none;
+ position: absolute;
+ min-height: 16vh;
+ padding: 2vh;
+ min-width: 20vw;
+ z-index: 10;
+ justify-content: center;
+ align-items: center;
+ flex-direction: column;
+ font-size: 70%;
+ border-radius: 5px 10px 10px 10px;
+ }
+
+ #showIP h4, #showIP p {
+ margin: 0;
+ }
+
+ #settings:hover #showIP {
+ display: flex;
+ }
+
+ #showIP::before {
+ content: " ";
+ position: absolute;
+ bottom: 100%; /* At the bottom of the tooltip */
+ left: 0;
+ margin-left: 3px;
+ border-width: 10px;
+ border-style: solid;
+ border-color: transparent transparent rgb(63, 63, 63) transparent;
+ }
\ No newline at end of file