.wefi-subwindow {
    position:fixed;
    font-family: consolas;
    border: 2px dashed yellow;
    color: white;
    background-color: #003c80;
    border-radius: 10px;
}

.wefi-subwindow>.subwindow-title{
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    text-align: center;
    border-bottom: 2px solid yellow;
    color: yellow;
}

.wefi-subwindow>.subwindow-content{
    overflow: auto;
    resize: both;
    padding: 5px;
    max-width: 80vw;
    max-height: 60vh;
    min-width: 20vw;
}

.wefi-subwindow>.subwindow-title>.close-btn{
    position: absolute;
    top: 5px;
    right: 5px;
}

.wefi-subwindow>.subwindow-title>.close-btn>i{
    display: block;
}

.wefi-subwindow>.subwindow-content::-webkit-resizer{
    border-width: 0 3px 3px 0;
    border-color: yellow;
    border-style: solid;
    border-radius: 0 0 10px 0;
    background: transparent;
}

.wefi-subwindow>.subwindow-content::-webkit-scrollbar{
    background: transparent;
    border: 1px solid white
}

.wefi-subwindow>.subwindow-content::-webkit-scrollbar-thumb {
    background: #007bff;
    border: 1px solid white;
}

.wefi-subwindow>.subwindow-content::-webkit-scrollbar-thumb:active{
    background:#003c80;
}

.wefi-subwindow>.subwindow-content::-webkit-scrollbar-button:single-button{
    display: none;
}

.wefi-subwindow>.subwindow-content::-webkit-scrollbar-corner{
    background: transparent;
}

.clickable-text{
    text-decoration: underline;
    padding: 0 2px;
    border-radius: 2px;
    cursor:pointer;
    user-select: none;
}

.clickable-text:hover{
    background-color: rgba(0, 123, 255, 0.5);
}

@keyframes analyser-tooltip-fade-in{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes analyser-tooltip-fade-out{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.node-warn>i{
    position: fixed;
    padding: 3px;
    top: -30px;
    font-size: 24px;
    height: 40px;
    border-width: 2px;
    border-style: solid;
    border-radius: 10px 10px 0 0;
    border-color: white;
    background: yellow;
    color: black;
}

.analyser-tooltip{
    background-color: #007bff;
    z-index: 11;
    border: 2px dashed white;
    color: yellow;
    position: absolute; 
    display: block;
    top: 0;
    left: 0;
    width: 20vw;
    padding: 5px;
    border-radius: 5px;
    word-wrap: break-word;
    animation-name: analyser-tooltip-fade-in;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-direction: normal;
}
