#lanutilContent {
    display: grid;
    grid-template-rows: 26px auto;



    .topBar {
        background-color: #b6b6b6;
        border-bottom: 2px solid #818181;



        display: flex;
        align-items: center;
        justify-content: center;
        /* padding-left: 2px;
        padding-right: 2px; */

        /* width: calc(100% - 4px); */
        width: 100%;

        max-height: 100vh;
    .selected {
    border-top: 2px solid #818181;
    border-left: 2px solid #818181;
    border-right: 2px solid #e7e7e7;
    border-bottom: 2px solid #e7e7e7;
    }

    }
    .topBar p {
        white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }
.topBar button {
    padding-bottom: 4px;
    margin: 0px;
    padding-left: 2px;
    padding-right: 2px;

    width: auto;
    flex: 1;
    height: 22px;

    background-color: #b6b6b6;
    border-top: 2px solid #e7e7e7;
    border-left: 2px solid #e7e7e7;
    border-right: 2px solid #818181;
    border-bottom: 2px solid #818181;
}
.topBar button:active {
    border-top: 2px solid #818181;
    border-left: 2px solid #818181;
    border-right: 2px solid #e7e7e7;
    border-bottom: 2px solid #e7e7e7;
}

.topologyContainer {
    position: relative;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;

    min-width: 460px;
    min-height: 380px;
    max-height: 100vh;


}

.topologySvg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.topologyItem {

    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    p {
        background-color: rgba(0, 0, 0, 0.503);
        color: #e7e7e7;
        font-size: 12px;
        padding: 2px;
    }
}

}