*{
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    background-color: rgb(19, 9, 65);
    display: flex;
    flex-direction: column;
}

.container{
    max-width: 500px ;
    color: white;
    margin: 40px auto;
}
.progress-container{
    max-width: 500px ;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 2rem;
    gap: 25px;
}

.progress{
    text-align: left;
    width: 100%;
    flex: 1;
}
.progressBar{
    width: 100%;
    height: 5px;
    margin-top: 1rem;
    background-color: #ccc;
    border-radius: 5px;
}

#progressStats{
    width: 0;
    height: inherit;
    background-color: cyan;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.progress-num{
    width: 100px;
    height: 100px;
    background-color: cyan;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8em;
    color: rgb(43, 43, 43) ;
}

.taskInput{
    margin: 30px auto;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
}

.taskInput input{
    width: 100%;
    height: 50px;
    padding: 5px 10px;
    flex: 1;
    outline: none;
    border: 2px solid cyan;
    background-color: rgb(43, 43, 43);
    caret-color: white;
    color: white;
    border-radius: 5px;
}
.taskInput input:active{
    background-color: rgb(43, 43, 43);
}
.taskInput button{
    width: 50px;
    height: 50px;
    margin-right: 5px;
    outline: none;
    border-radius: 50%;
    font-size: 25px;
    border: none;
    background-color: cyan;
    color: black;
}

#taskList{
    width: 100%;
    height: 400px;
    background-color: rgb(59, 47, 113);
    list-style: none;
    padding: 10px 5px;
    margin: 3.5em auto;
    border-radius: 5px;
    overflow-y: scroll;
    scrollbar-width: none;
}

#taskList li{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    margin-bottom: 10px;
    background-color: cyan;
    color: black;
    border-radius: 5px;
}

.taskItem{
    display: flex;
    gap: 10px;
    cursor: pointer;
}

#taskList button{
    width: 25px;
    height: 25px;
    margin-left: 5px;
    outline: none;
    border-radius: 50%;
    font-size: 20px;
    border: none;
    background-color: transparent;
    color: black;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

#taskList button:hover{
    color:  rgb(59, 47, 113);
    transform: scale(1.2);
}

.liBtn{
    display: flex;
    gap: 10px;
}

.completed {
    text-decoration: line-through;
    color: gray;
}
.checklist {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid gray;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    margin-right: 10px;
    cursor: pointer;
    font-weight: bold;
    color: green;
}

