
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.all{
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.container {
    width: 350px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    
}

.container h2{
    text-align: center;
    padding-bottom: 20px;
}

.input-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

button {
    padding: 8px 12px;
    border: none;
    background-color: black;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    border-radius: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.task-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.circle {
    width: 18px;
    height: 18px;
    border: 2px solid black;
    border-radius: 50%;
    cursor: pointer;
}

.completed {
    text-decoration: line-through;
    color: gray;
}

.delete {
    cursor: pointer;
    color: red;
    font-weight: bold;
}




.NavBar{
    display: flex;
    background-color: #1e293b;
    width: 100%;
    height: 70px;
    justify-content: space-between;
    align-items: center;
}

.Logo{
    text-decoration: none;
    color: white;
    margin-left: 20px;
}

.Logo h2{
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

.Account, .Wishlist{
    text-decoration: none;
    color: white;
    font-size: 2rem;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}

.Account:hover, .Wishlist:hover{
    color: #d7d7d7;
}