#taskbar {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
    background-color: #c0c0c0;
    border-top: 1px solid #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 2px;
}

#start-button-container {
    position: relative;
    flex-shrink: 0;
}

#start-button {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
}

#taskbar-apps {
    display: flex;
    flex-grow: 1;
    align-items: center;
    overflow-x: auto;
    margin-left: 2px;
    padding-right: 2px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#taskbar-apps::-webkit-scrollbar {
    display: none;
}

.taskbar-button {
    min-width: 100px;
    height: 22px;
    margin: 2px;
    padding: 2px 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    
    border: none !important;
}

.taskbar-button:not(.selected) {
    box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf !important;
    background-image: none !important;
}

.taskbar-button:not(.selected):active, 
.taskbar-button:not(.selected).pressing {
    box-shadow: inset -1px -1px #fff, inset 1px 1px #0a0a0a, inset -2px -2px #dfdfdf, inset 2px 2px grey !important;
}

.taskbar-button.toggle.selected, 
.taskbar-button.toggle[aria-pressed="true"] {
    box-shadow: inset -1px -1px #fff, inset 1px 1px #0a0a0a, inset -2px -2px #dfdfdf, inset 2px 2px grey !important;
    
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAG0lEQVQYV2P8/////4MHDzIwHjhw4L+9vT0DAHAFCj6esq3FAAAAAElFTkSuQmCC") !important;
    background-color: var(--ButtonFace) !important;
    image-rendering: pixelated;
    
    border: none !important;
    border-image: none !important;

    color: #000 !important;
    text-shadow: none !important;
}


#clock {
    margin-left: auto;
    border: 1px solid #808080;
    border-right-color: #fff;
    border-bottom-color: #fff;
    min-width: 64px;
    text-align: center;
    flex-shrink: 0;
    padding: 1px 4px;
}

#start-menu {
    position: absolute;
    bottom: 28px;
    left: 2px;
    width: 180px;
    background: #c0c0c0;
    border: 1px solid;
    border-color: #fff #808080 #808080 #fff;
    box-shadow: 1px 1px #000;
    padding: 2px;
    display: flex;
}

#start-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
#start-menu li {
    padding: 5px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
#start-menu li:hover {
    background: #000080;
    color: white;
}
#start-menu li img {
    width: 24px;
    height: 24px;
}
.start-menu-sidebar {
    background: #808080;
    width: 24px;
}
.start-menu-sidebar span {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 23px;
    font-weight: bold;
    color: #c0c0c0;
    padding: 12px 0;
    text-align: center;
}
#start-menu li.separator {
    height: 1px;
    background: #808080;
    border-bottom: 1px solid #fff;
    margin: 4px;
    padding: 0;
}