:root {
    --winbackground: #007b7b;
}

body {
    background-color: var(--winbackground);
}

.winbutton {
    display: flex; 
    align-items: center; 
    min-width: 68px; 
    font-weight: bold;
}

.desktopselected {
    background-color: darkblue;
    /*border-style: dotted;
    border-width: 1px;*/
}

#desktopicon {
    color: white;
    width: 75px; height: 75px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none;
}

#desktopicon > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 6px;
    pointer-events: none;
}

#desktopicon > span {
    text-align: center;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.window {
    position: absolute;
    z-index: 9;
    min-width: 300px;
}

.title-bar-text {
    min-width: 83%;
    margin-right: 0px; /* Dunno why it was in 98.css, maybe its important but it doesnt seem to break anything */
}