.desktop-icons .icon {
    position: relative;
}

.desktop-icons .icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px dashed transparent;
    border-radius: 8px;
    pointer-events: none;
    transition: border-color 0.2s;
}

.desktop-icons .icon:hover::after {
    border-color: rgba(255, 255, 255, 0.3);
}

.desktop-icons .icon.selected::after {
    border-color: rgba(255, 255, 255, 0.8);
}

.taskbar-app {
    height: 32px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-right: 8px;
}

.taskbar-app:hover {
    background: rgba(255, 255, 255, 0.2);
}

.taskbar-app.active {
    background: rgba(255, 255, 255, 0.3);
}

.taskbar-app img {
    width: 16px;
    height: 16px;
}

.taskbar-app span {
    font-size: 12px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

