body {

    font-family: segoe ui, Arial, sans-serif;
    background: linear-gradient(135deg, #ffdee9, #b5fffc);
    padding: 20px;
    margin: 0;
    color:  #333;

}

h1 {

    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px #fff;
    
}

ul {

    list-style: none;
    padding: 0 4px;
    max-width: 100%fit-content;
    margin: 0 auto;

}

.cover {

    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid #ddd;

}

li {

    background: #fff;
    margin: 10px 0;
    font-size: 14px;
    padding: 10px 8px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

li:hover {
    
    transform: scale(1.02);

}

.cover {

    width: 36px;
    height: 36px;
    margin-right: 8px;

}
.title {

    font-weight: bold;
    font-size: 14px;
    color: #2c3e50;

}

.progress {

    color: #555;
    font-size: 14px;
}

status {

    font-size: 22px;
    font-weight: bold;
    margin-left: auto; 
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;

}

.status.done {

    color: #27ae60;  

}

.status:hover {

    transform: scale(1.5); 

}

form {

    margin-top: 25px;
    text-align: center;

}

form input {

    padding: 8px 10px;
    margin: 5px;
    border: 1px solid #aaa;
    border-radius: 6px;
    text-align: center;
    outline: none;

}

form input:focus {

    border-color: #2980b9;
    box-shadow: 0 0 4px #2980b9;

}

form button {

    padding: 8px 14px;
    margin-left: 5px;
    background: #2980b9;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;

}

form button:hover {

    background: #1f5871 ;
    transform: scale(1.05);
}