/* Virtual Desktops - taskbar switcher */

.desktop-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    margin-right: 4px;
}

.desktop-dot {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-dot:hover {
    background: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.08);
}

.desktop-dot.active {
    background: rgba(102, 126, 234, 0.35);
    border-color: rgba(102, 126, 234, 0.7);
    color: #fff;
}

.desktop-add-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.45);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
    padding: 0;
}

.desktop-add-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Windows hidden on inactive desktops */
.window.vd-hidden {
    display: none !important;
}
