body {
    /* Override bootstrap properties */
    background-color: #0099CC !important;
    border: 0 !important;
    align-content: center !important;
}

#container{
    margin: 0 auto;
    width: 1060px;
    min-height: 100%;
    background-color: transparent;
    border: 0;
    align-items: center;
}

#header{
    font-size: 30px;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
}

.task-list{
    width: 250px;
    float:left;
    margin: 0 5px;
    min-height: 240px;
    border-radius: 10px;
    padding-bottom: 15px;
    text-align: center;
}
#pending{
background-color: #FF5050;
}
#inProgress{
background-color: #FFCC99;
}
#completed{
background-color: #66FF99;
}
#delete{
background-color: #FFFFFF;
}

.task-listing{
    width: 250px;
    margin: 0 auto;
    min-height: 240px;
    border-radius: 10px;
    padding-bottom: 15px;
    text-align: center;
}

.task-list input, .task-list textarea{
    width: 240px;
    margin: 1px 5px;
}

.task-list input{
    height: 30px;
}

.todo-task{
    border-radius: 5px;
    background-color: #fff;
    width: 230px;
    margin: 5px;
    padding: 5px;
}

.task-list input[type="button"]{
    width: 100px;
    margin: 5px;

}

.todo-task > .task-header{
    font-weight: bold;
}

.todo-task > .task-date{
    font-size: small;
    font-style: italic;
}

.todo-task > .task-description{
    font-size: smaller;
}

h3{
    text-align: center;
}

#delete-div{
    display: none;
    background-color: #fff;
    border: 3px dotted #000;
    margin: 10px;
    height: 75px;
    line-height: 75px;
    text-align: center;
}