*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif;
}

.task-complete {
    color: #ffffff !important;
    text-decoration: line-through;
    background-color: green !important;
}


body{
    background-color: #f3f3f3 !important;
}
h1{
    font-size: 3rem !important;
    color: #b58de6 !important;
}

.main-container{
    width: fit-content;
    padding: 30px 20px 30px 20px;
    margin: auto;
    min-height: 300px;
    border-radius: 10px;
}

.input-box{
    width: fit-content !important;
    
}
.input-box input{
    width: 370px !important;
    outline: none;
    border: 2px solid #fafafa;
    border-right: none;
    border-radius:  7px 0 0 0;
    padding: 12px 0 12px 0;
    padding-left: 20px;
    font-size: 1.3rem;
    background-color: #fff;
}
.input-box button{
    border: none !important;
    padding: 10px 20px;
    border-radius:  0 7px 0 0;
    background-color: #fff;
}
.input-box button:hover{
    background-color: #5F4B8BFF;
    color: #fff;
}

.lists-box{
    width: 425px;
    /* border: 2px solid #000000c6; */
    border: none !important;
    border-top: none;
    cursor:context-menu;
}
.lists-box li{
    background-color: #fff;
    list-style: none;
    padding: 7px 0 7px 20px;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3px 0;
}
.lists-box li span{
    width: 70% !important;
    height: fit-content;
    word-wrap: break-word;
}
.lists-box li div button:first-child{
    position: relative;
    background-color: transparent;
    border: none;
    padding: 10px 15px;
    margin-right: 4px;
    transition: all .3s ease;
    font-size: 1.2rem;
    color: #0ac100bb;
}
.lists-box li div button:hover:first-child{
    color: #0cf300;
}
/* .lists-box li div button:hover:first-child::after{
    position: absolute;
    top: 9px;
    left: -120px;
    color: #696969;
    padding: 0;
    font-size: .9rem;
    padding: 2px 10px;
    content: "Task Complete?";
    pointer-events:none;
} */

.lists-box li div button:last-child{
    background-color: transparent;
    border: none;
    padding: 10px 15px;
    margin-right: 4px;
    transition: all .3s ease;
    color: #ff0000a3;
}
.lists-box li div button:hover:last-child{
    color: #ff0000;
}