html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('img/assets/bg/wflow.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

#taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3888e9;
    color: white;
    text-align: left;
    padding: 17px;
    box-sizing: border-box;
    z-index: 1000;
}

#startButton {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 16px;
    margin-left: 0px;
    position: fixed;
    bottom: 0;
    left: 0;
}

#startMenu {
    display: none;
    position:absolute;
    bottom: 34px;
    left: 0;
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: 700px;
    z-index: -1;
}

#startMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#startMenu ul li {
    margin: 10px 0;
}

#startMenu ul li a {
    color: #3888e9;
    text-decoration: none;
}

.hidden {
    display: none;
}

.windowScreen {
    display: none;
    position: fixed;
    top: 50px;
    left: 50px;
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    height: 300px;
    z-index: 2;
}

.windowHeader {
    background-color: #3888e9;
    color: white;
    padding: 5px 10px;
    cursor: move;
    user-select: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 28px;
    box-sizing: border-box;
}

.windowContent {
    margin-bottom: 20px;
    padding-top: 40px;
}

.closeButton {
    background-color: #f22b2b;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    top: 0px;
    right: 0px;
}

.newTab {
    background-color: green;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    top: 0px;
    right: 30px;
}

.desktopICO {
    position: absolute;
    top: 16px;
    bottom: 0px;
    left: 48px;
    z-index: 1;
}

.desktopICO tr {
    height: 100px;
}

.desktopICO td {
    text-align: center;
}

.desktopICO img {
    height: 48px;
    width: 48px;
}

@media (max-width: 600px) {
    #startMenu {
        width: 100%;
        height: auto;
        bottom: auto;
        top: 50px;
        left: 0;
        right: 0;
        z-index: -1;
    }

    #startMenu ul li {
        margin: 5px 0;
    }

    #startButton {
        padding: 5px 10px;
        font-size: 16px;
    }

    .windowScreen {
        width: 90%;
        height: 90%;
        top: 5%;
        left: 5%;
    }
}