.tooltipIp {
    position: relative;
    display: inline-block;
    margin-left:30px;

}

.tooltipIp .tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltipIp .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltipIp:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.myIpTopBar {
    background: #233242;
    height: 50px;
    padding-left: 40px;
}
.myip-menu-item {
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    padding: 12px;
    color: #6a7a8c;
}
.myip-menu-item a {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    padding: 6px;
    color: rgb(167,173,179);
}

.linuxTerminal {
    padding: 20px;
    background-color: #1e1e1e; /* Terminal background color */
    color: #00ff00; /* Terminal text color */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.editor {
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.line {
    display: block;
    white-space: pre;
    margin: 0;
    padding: 5px 0;
    color: #333;
}

.line:nth-child(odd) {
    background-color: #f9f9f9;
}

.line:hover {
    background-color: #e0e0e0;
}
.siteLogoText {
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    padding: 10px;
    color: #6a7a8c;
}