/* desktop-icons.css */

.desktop.dragging-icon {
    /* user-select: none; */ /* Already handled by .no-select in your main CSS */
}

.desktop-icon.is-positioned {
    /* Styles applied by JS:
    position: absolute;
    margin: 0;
    */
}

/* --- NEW FOR MARQUEE --- */
.marquee-select-box {
    position: absolute;
    border: 1px dotted white; /* var(--theme-color-active-titlebar); */
    mix-blend-mode: difference;
    /* background-color: rgba(0, 0, 128, 0.2); /* Consider a variable if theme changes drastically */
    z-index: 1000;
    pointer-events: none; /* Crucial: allows events to pass through to icons underneath */
}

/* Ensure desktop icons have a base z-index if they are positioned.
   This helps with layering relative to the marquee. */
.desktop-icon {
    position: relative; /* Needed for z-index to apply on static elements if not already absolute */
    z-index: 1;
}
