body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f8fc;
    padding: 10px;
    box-sizing: border-box;
}

.container {
    border: 1px solid #EAEDED ;
     border-radius:10px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    padding:10px 40px;

}

.todoList, .task, .completeTask, .taskReport{
  padding:30px;
   border-radius:10px;
  margin-bottom:60px;
  box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.2);
  position:relative;
    box-sizing: border-box;
}

.list{
   margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr ;
  grid-gap: 8px;
   margin:auto;
  margin-top:40px;
}

.list input, select{
   width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
  border-radius: 5px;
  outline: none;
  	  border: 1px solid #EAEDED;
}


 h2, h3 {
    margin: 0;
background: #5499C7 ;
    border-top-left-radius:5px;
/*   border-bottom-left-radius:5px;
   border-top-right-radius:5px; */
    border-bottom-right-radius:5px; */
  text-align:center;
  padding:8px;
  margin-bottom:20px;
   color:#F8F9F9;
/*    color:#5499C7; */
    position: absolute;
  left:0;
   top:0;
min-width:150px;
   text-align:center;
   
}

h1 {

    font-size: 22px;
      margin: 0;
  margin-bottom:-40px;
/* background:#45B39D  ; */
  
  border-radius:5px;
  text-align:center;
  padding:10px;
  margin-top:10px;
  margin-bottom:20px;
/*   color:#F8F9F9; */
  color:#333
}



h3 {
    font-size: 16px;

}
.addTask{

   display:flex;
  justify-content:center;
     
}
.addTask button{
 width:20%;
  background-color:  #F7DC6F ;
/*      color:#F8F9F9; */
    border: none;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    cursor: pointer;
  font-size:18px;
   transition-duration: 0.4s;
}

.addTask button:hover{
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
 

 td button {
    background-color: #007BFF !important;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    margin-left:10px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom:10px;
    min-width: 150px;
  
}

.addTask button{
 width:20%;
  background-color:  #F7DC6F ;
/*      color:#F8F9F9; */
    border: none;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    cursor: pointer;
  font-size:18px;
   transition-duration: 0.4s;
}

img {
    margin-left: 10px;
}

li {
    list-style-type: none;
    padding: 10px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
   margin-top:40px;
}

th, td {
    padding: 8px 12px;
    border: 1px solid #EAEDED;
    text-align: left;
  color:#333;
}

td img {
    display: block;
    margin: 10px 0;
}

/* Mobile responsive code */
@media only screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }

    button, input[type="text"], input[type="file"] {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 10px;
    }

    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        margin: 0 0 1rem 0;
    }
    
    tr:nth-child(odd) {
        background: #f8f8f8;
    }
    
    td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        text-align: right;
    }

    td:before {
        position: absolute;
        top: 0;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        content: attr(data-column);
        text-align: left;
        font-weight: bold;
    }
}
