.container { height: 35px; display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 10px; margin: 2px; } .taskbar { font-weight: bold; display: flex; flex-direction: row; text-align: left; } .startButton { display: inline-flex; justify-content: space-around; align-items: center; width: 100px; border-top: 2px solid white; border-left: 2px solid white; border-bottom: 2px solid #828282; border-right: 2px solid #828282; } .startIcon { height: 30px; } .divider { margin: auto 8px; width: 4px; height: 25px; border-top: 2px solid white; border-left: 2px solid white; border-bottom: 2px solid #828282; border-right: 2px solid #828282; } .windows { display: flex; flex-direction: row; gap: 5px; } .window { min-width: 150px; padding-left: 10px; display: inline-flex; align-items: center; border-top: 2px solid white; border-left: 2px solid white; border-bottom: 2px solid #828282; border-right: 2px solid #828282; } .windowActive { min-width: 150px; padding-left: 10px; display: inline-flex; align-items: center; border-bottom: 2px solid white; border-right: 2px solid white; border-left: 2px solid #828282; border-top: 2px solid #828282; }