#taskbar {
    height: 40px; width: 100%;
    background-color: #c0c0c0;
    border-top: 2px solid #ffffff;
    display: flex; align-items: center;
    padding: 2px;
    position: absolute; bottom: 0;
    z-index: 1000;
}

#start-btn {
    font-weight: bold; padding: 5px 15px;
    border: 2px outset #ffffff; background: #c0c0c0;
    cursor: pointer; margin-right: 10px;
}
#start-btn:active { border-style: inset; }

#taskbar-apps {
    display: flex; gap: 5px; flex-grow: 1;
    overflow: hidden; padding-left: 5px;
}

.taskbar-item {
    padding: 5px 10px; background: #c0c0c0;
    border: 2px outset #ffffff; cursor: pointer;
    user-select: none; max-width: 150px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.taskbar-item.active { border-style: inset; background: #e0e0e0; font-weight: bold; }

#clock-tray {
    margin-left: auto; padding: 5px 15px;
    background: #c0c0c0; border: 2px inset #ffffff;
}