* {
    /*  border: 1px solid grey;*/
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
    margin-top: 0px;
}
body {
    display: flex;
    background-color: white;
    font-family: sans-serif;
    padding: 20px;
    align-items: center;

}

.container {
    /* margin-top: 0px; */
    /* display: flex; */
    width: 400px;
    justify-content: center;
    border: none;
    align-items: center;
    border-radius: 50px;
    /* box-shadow: 3px 4px 5px 0px rgba(204, 185, 185, 1.75); */
    padding-bottom: 60px;
    /* overflow-x: hidden; */
    /* overflow-y: hidden; */
}
h2 {
    text-align: center;
    margin-top: 20px;
}
.tugas{
    background-color: grey;
    padding:20px 70px 20px 70px;
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    margin-top:5px;
    color: white;
    max-height: 100px;
    border-radius: 20px 20px 0 0 ;
}
.textProgres{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.title{
    background-color: blue;
    padding:20px 70px 20px 70px;
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    margin-top:5px;
    color: white;
    max-height: 100px;
    border-radius: 20px 20px 0 0 ;
}

.progres1{
    margin-top: 30px;
}

#app {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    /*  border: 1px solid #ccc;*/
    box-shadow: 3px 4px 5px 0px rgba(204, 185, 185, 1.75);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}
.todoList {
    width: 100%;
    justify-content: space-between;
    border: none;
    border-radius: 30px;
    box-shadow: 3px 4px 5px 0px rgba(204, 185, 185, 1.75);
    padding-bottom: 20px auto;
    overflow: hidden;
}
.inputContainer {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: baseline;
}

input[type="text"] {
    width: 80%;
    padding: 5px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    display: flex;
}

#addTaskButton {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 20px;
}

button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    right: 5px;
}

button:hover {
    background-color: #0056b3;
}
.bar {
    width: 100%;
    height: 30px;
    background-color: grey;
    margin: 10px auto;
    border-radius: 20px;
    overflow: hidden;
}
.progresBar {
    align-items: center;
    justify-content: center;
    background-color: blue;
    color: white;
    height: 100%;
    width: 0;
    transition: 1s ease 0.3s;
    border-radius: 20px;
    text-align: center;
    display: flex;
    float: left;
}
#tasks {
    width: 400px;
    /* padding: 50px auto; */
    margin-top: 20px auto;
}
ul {
    list-style: none;
    padding: 20px;
    align-content: center;

}

li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
    flex-direction: flex-start;
    text-align: left;
}
li span {
    width: 70%;
    text-align: left;
    display: flex;
    justify-content: flex-start;

}

#taskSummary {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-weight: bold;
    padding: 20px;
    background-color: blue;
    color: white;
}
/* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .modal-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
  }
  .modal-content label {
    font-weight: bold;
  }
  .modal-content input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .modal-content button {
    background-color: #ff80b0;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  .modal-content button:hover {
    background-color: #ff6090;
  }
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }