*{
    margin: 0; padding: 0; box-sizing: border-box;
}
body{
    background-color: rgb(30, 0, 77);
    font-family: "Tajawal", sans-serif;
}
.d-flexCenter{
    display: flex;
    justify-content: center;
    align-items: center;
}
button.circlar{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 0;
}
button{
    border: none;
    font-size: 20px;
    box-shadow: 0px 3px 5px rgb(168, 168, 168, 0.38);
    cursor: pointer;
}


.container{
    direction: rtl;
    /* خاصية تخلي الموقع من اليمين الى اليسار او العكس  */
}
.tasks-table{
    width: 70%;
    margin-top: 100px;
    background-color: rgb(239, 239, 293);
    /* height: 500px; */
}
.tasks-table header h1{
    display: inline;
}
header{
    width: 100%;
    text-align: center;
    background-color: rgb(92,52,155);
    color: white;

    padding: 4px 0;
    align-items: center;
}
.tasks-table header button{
    float: right;
    background: white;
    margin-right: 10px;
    margin-top: 2px;

}
.tasks{
    padding: 20px;
}
.task{
    display: flex;
    background-color: white;
    padding: 4px;

    border-bottom: 1px solid black;
    transition: 0.2s;
}
.done{
    background-color: rgb(158, 253, 160);
}
.task:hover{
    box-shadow: 0px 3px 15px rgba(97, 97, 97, 0.843);
}
.task-info{
    width: 70%;
}
.task-action{
    width: 20%;
}
.task-action .del{
    background-color: rgb(114, 0, 0);
    color: white;
}
.task-action .true{
    background-color: rgb(0, 150, 30);
    color: white;
}
.task-action .edit{
    background-color: rgb(0, 16, 197, 0.692);
    color: white;
}


