
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --background: #f3f0ff;
    --backgroundDark: #e1dafd;

    --secondaryBackground:#e7f3ff;
    --text:#000000;
    --purple: #5f33e1;
    --teal:#90cbff;

}

body{
    background-color: var(--background);
    color: var(--text);
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    max-width: 500px;
    margin: 120px auto 0 auto;
}

.details{
    width:100%;

}
.status-container{
    padding: 10px;
    border-radius: 10px; 
    border: 2px solid var(--purple);
    display: flex;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}
.tasksNo{
    float: right;
    color: #5f33e1;
}

#progressBar{
    width: 100%;
    height: 10px ;
    background-color: var(--backgroundDark);
    border-radius: 5px;
    margin-top: 20px;
}
#progress{
    width: 50%;
    height: 10px;
    background-color: var(--purple);
    border-radius: 5px;
    transition: all 0.3s ease;

}


#numbers{
    width: 60px;
    height: 60px;
    margin-top: 10px;
    background-color:white ;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    font-weight: bold;
    color: #5f33e1;
}

form {
    margin-top:   30px;
    width: 100%;
    display: flex;
    gap: 5px;

}

input{
    padding: 16px;
    background-color: var(--backgroundDark);
    border: 1px solid var(--purple);
    flex: 1;
    border-radius: 13px;
    outline: none;
}

button {
    width: 50px;
    height: 50px;
    border-radius: 30%;
    align-items: center;
    justify-content: center;
    background-color: var(--purple);
    color: var(--backgroundDark);
    font-size: medium;
    font-weight: bold;
    border: 1px solid var(--purple);

}
.editBtn{
     
    width: 27px;
    height: 27px;
}

.deleteBtn{
    background-color: rgb(255, 90, 90);
    border: none;
    outline: none;
    width: 27px;
    height: 27px;
}

.taskContainer{
    width: 100%;
    display: flex;
    padding: 5px;
    border-radius: 10px;
    justify-content: space-between;
    margin-top: 5px;


    
}
.taskList{
    width: 100%;
    justify-content: space-between;



}

.task {
    padding: 10px;
    width: 100%;
    list-style: none;
    background-color: var(--backgroundDark);
    border-radius: 10px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.task .button-group {
    display: flex;
    gap: 5px; /* Add gap between buttons */
}

.taskList img {
    width: 13px;
    height: 13px;
    
}

.editBtn, .deleteBtn {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taskLabel {
    display: flex;
    align-items: center;
    gap: 50px; /* Space between checkbox and text */
  }

