.desktop-icon {
    --grid-size: 75px;
    position: absolute;
    width: var(--grid-size);
    height: var(--grid-size);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    user-select: none;
    color: white;
    top: calc(var(--grid-y, 0) * var(--grid-size));
    left: calc(var(--grid-x, 0) * var(--grid-size));
    cursor: pointer;
}
.desktop-icon img {
    margin-bottom: 4px;
    pointer-events: none; /* disabled img interaction - i need to remember to use this more often */
}
.desktop-icon span {
    text-shadow: 1px 1px 1px #000;
    word-break: break-word;
    max-width: 100%;
    padding: 0 2px;
}
.desktop-icon.selected span {
    background-color: navy;
    color: white;
    text-shadow: none;
    outline: 1px dotted #fff;
}
.desktop-icon.selected img {
    filter: invert(100%);
}
.desktop-icon.dragging {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    opacity: 0.7;
}