#sysinfoContent {
    display: grid;
    grid-template-rows: 22px 1fr;

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

        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 2px;
        padding-right: 2px;

        width: calc(100% - 4px);

        max-height: 100vh;

    }
    .sbar p {
        white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }

.bar .selected {
    border-top: 2px solid #818181;
    border-left: 2px solid #818181;
    border-right: 2px solid #e7e7e7;
    border-bottom: 2px solid #e7e7e7;
}
.bar button {
    padding: 0px;
    margin: 0px;

    width: 50%;
    height: 18px;

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

img {
    background-color: #b6b6b6;
    border-top: 4px solid #e7e7e7;
    border-left: 4px solid #e7e7e7;
    border-right: 4px solid #818181;
    border-bottom: 4px solid #818181;

    width: 96px;
    height: 96px;
}


}