.desktop-icons {
    padding-top: 0.5rem;
    max-height: 100vh;
    max-height: 100svh;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-start;
}

.desktop-icon {
    width: 5rem;
    text-align: center;
    font-family: "Segoe UI";
    color: white;
    text-shadow:
        1px 2px 3px #000,
        /* White shadow below-right */
        -1px -1px 0 #000,
        /* White shadow above-left */
        1px -1px 2px #000,
        /* White shadow below-left */
        -1px 1px 0 #000;
    padding: 5px;
    margin-bottom: 1.5rem;
    user-select: none;
}

.desktop-icon:hover {
    background-color: rgba(28, 191, 255, 0.3);
    border: 1px rgb(0, 178, 250) solid;
    padding: 4px;
}

.desktop-icons .desktop-icon img {
    width: 3rem;
    height: auto;
    margin-bottom: 5px;
    user-select: none;
    /* image-rendering: crisp-edges; */
}

.desktop-icons .desktop-icon span {
    font-size: 0.8rem;
    line-height: 1rem;
    display: block;
    user-select: none;
}

.loader {
    background-image: url(/assets/loading_tile.png);
    background-position: 0 0;
    height: 20px;
    animation-name: rotate;
    animation-duration: 0.4s;
    width: 20px;
    display: none;
    position: fixed;
    z-index: 99999999;
}