.completed {
    text-decoration: line-through;
    opacity: 0.7;
}

#main{
    margin: 5px;
    padding: 5px;
    text-align: center;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

#taskinput {
    width: 250px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#tasklist {
    margin-top: 15px;
}

#tasklist div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
}

#tasklist div p {
    margin: 0;
    flex: 1;
    margin-right: 10px;
    word-break: break-word;
}

#tasklist div button {
    margin-left: 6px;
    flex-shrink: 0;
}

#tasklist div input {
    flex: 1;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

#tasklist div input:focus {
    border-color: #4caf50;
}

button {
    padding: 5px 10px;
    border: none;
    background: #4caf50;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #45a049;
}