/* ===== Taskleiste ===== */
#taskbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    z-index: 4000;
}

#startButton {
    width: 42px;
    height: 38px;
    background: none;
    border: none;
    border-radius: 8px;
    font-size: 21px;
    transition: transform .15s ease, background .15s ease;
}

#startButton:hover {
    background: var(--bg-hover);
    transform: scale(1.1);
}

#startButton.active { background: var(--accent-soft); }

#taskbarApps {
    display: flex;
    gap: 6px;
    flex: 1;
    overflow-x: auto;
}

.task-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 8px 8px 0 0;
    color: var(--text);
    padding: 8px 14px;
    font-size: 13px;
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
}

.task-btn:hover { background: var(--bg-hover); }

.task-btn.active {
    background: var(--bg-hover);
    border-bottom-color: var(--accent);
}

.task-btn.min { opacity: .55; }

#tray {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
    line-height: 1.35;
    padding: 0 6px;
    color: var(--text);
}

#date { color: var(--text-dim); font-size: 11px; }
