#processWindow {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 300px;
    height: 200px;
    background-color: #f0f0f0;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.5s; /* Transition */
}

#processWindow.minimized {
    width: 300px;
    height: 30px;
}

#window_title {
    height: 30px;
    cursor: pointer;
    background-color: #2C3742;
    color: white;
    line-height: 30px;
    padding-left: 5px;
}
#window_title h2{

}

#window_content {
    padding: 5px;
}

#tasks_list {
    list-style: none;
}

#tasks_list li {
    background: #0a6aa1;
    margin-top: 3px;
    margin-bottom: 3px;
}

