#taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: rgba(243, 243, 243, 0.85);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.taskbar-items {
    display: flex;
    align-items: center;
}

.taskbar-item {
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.taskbar-item:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.taskbar-item img {
    height: 24px;
}