body {
    background-color: teal; /* Classic Win95 desktop color */
    margin: 0;
    font-family: "MS Sans Serif", "Arial", sans-serif;
}

.taskbar {
    background-color: #C0C0C0;
    height: 30px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
    border-top: 1px solid white; /* Top edge of the taskbar */
    box-sizing: border-box;
}

.start-button, .taskbar-buttons > div, .system-tray {
    /* Apply the classic bevel effect to elements */
    border-style: solid;
    border-width: 1px;
    border-color: white #808080 #808080 white;
    padding: 2px 5px;
    cursor: pointer;
}

.start-button {
    font-weight: bold;
    margin-right: 6px;
}

.system-tray {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    height: 100%;
    /* Inset effect for system tray */
    border-color: #808080 white white #808080;
}

#battery-status {
    /* Basic style for the battery status text */
    font-size: 12px;
}

.time {
    font-size: 12px;
}
