.body{
    width:1000px;
    margin:0 auto;
    font-family: sans-serif;
}
.title{
    text-align: center;
    padding-top:40px;
    font-size: 24px;
}
.AddSection{
    display:flex;
    gap : 10px;
    height : 40px;
    padding:20px;
}
#Todo-input{
    flex:1;
    cursor:pointer;
    border-radius: 4px;
    border: 1px solid #6c63ff;
    padding:10px;
    background-color: #f3e6ff;
}
#theme img{
    height:20px;
    width:20px;
    object-fit:contain;
}
#addbtn{
    cursor:pointer;
    border: 1px solid #6c63ff;
    background-color: #6c63ff;
    border-radius: 4px;
    color:white;
}
#theme{
    background:transparent;
    cursor:pointer;
    border: 1px solid #6c63ff;
    background-color: #6c63ff;
    border-radius: 4px;
}
.fab{
    position:fixed;
    bottom:20px;
    right:20px;
    height:50px;
    width:50px;
    font-size:32px;
    border-radius: 50%;
    display:flex;
    justify-content: center;
    align-items: center;
    border:1px solid #6c63ff;
    background-color: #6c63ff;
    cursor:pointer;
}
.fab:hover{
    background: #f3e6ff;
}
ul li{
    font-size:20px;
    list-style:none;
    padding:12px 18px 12px 50px;
    user-select: none;
    cursor:pointer;
    position:relative;
}
ul li::before{
    content:'';
    position:absolute;
    left : 12px;
    height:28px;
    width:28px;
    background-image:url(Assets/unchecked.png);
    background-size:cover;
    background-position: center;
}
ul li.checked{
    color : #555;
    text-decoration: line-through;
}
ul li.checked::before{
    background-image: url(Assets/checked.png);
}
ul li span{
    position :absolute;
    right:0;
    top:5px;
    width : 40px;
    height:40px;
    color: #555; 
    text-align: center;
    border-radius: 50%;
}
ul li span:hover{
    background-color: #edeef0;
}
.modal{
    display: none;
    position: fixed;
    left:0;
    top :0;
    width:100%;
    height:100%;
    background-color: #ececec;
}
.ModalContent{
    background-color: #fff;
    width:40%;
    max-width: 600px;
    margin:10% auto;
    padding:20px;
    border-radius: 10px;
    text-align:center;
    height:40%;
    max-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ModalAddTodo{
    display: flex;
    gap : 10px;
    height : 40px;
    padding:20px;
}
#ModTodo{
    flex:1;  
    border-radius: 8px;
}
.ModalSave{
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding:0 20px 0;
}
.ModalSave button{
    height:40px;
    width:150px;
    border-radius: 10px;
}
.ModalAddBtn{
    border-radius:8px;
}
