#lista-tarefas {
    background-color: var(--accent-color);
    min-width: 360px;
    width: 100vw;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--shadow-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#lista-tarefas > h1 {
    color: var(--text-color);
    text-align: center;
}

#lista-tarefas > ul {
    list-style-type: none;
    padding: 0;
    width: 100%;
}

#lista-tarefas .todo-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    background-color: #f3f4f6;
    border-radius: 4px;
    box-shadow: 0 1px 2px var(--shadow-color);
    color: #111827;
}

#lista-tarefas .todo-item.completed {
    background-color: #e8f5e9;
    text-decoration: line-through;
    opacity: 0.7;
}

#lista-tarefas .todo-name {
    flex-grow: 1;
    margin: 0 10px;
    padding: 5px;
}

#lista-tarefas .todo-name[contenteditable="true"] {
    border-radius: 3px;
    background-color: #fff;
}

#lista-tarefas .timer {
    font-family: monospace;
    margin-right: 10px;
    color: #111827;
}

#lista-tarefas .timer-start {
    border: 1px solid var(--shadow-color);
    background-color: var(--secondary-color);
    border-radius: 2px;
    padding-top: 4px;
    cursor: pointer;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    transition: background-color 0.3s;
}

#lista-tarefas .timer-start:hover {
    background-color: var(--primary-color);
}

#lista-tarefas .delete-btn {
    border: 1px solid var(--shadow-color);
    background-color: #a52a2aa5;
    padding: 0px 8px;
    border-radius: 2px;
    padding-top: 4px;
    color: black;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#lista-tarefas .delete-btn:hover {
    background-color: #a52a2a;
    color: white;

}

#lista-tarefas button {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#lista-tarefas .complete-btn {
    background-color: #e8f5e9;
    color: black;
    border: 1px solid var(--shadow-color);
}

#lista-tarefas .complete-btn:hover {
    background-color: #45a049;
    color: white;
}

#lista-tarefas .done {
    background-color: #45a049;
    color: white;
}

#lista-tarefas > button {
    display: block;
    width: 40px;
    height: 40px;
    padding: 10px;
    margin-top: 10px;
    background-color: #45a049;
    color: white;
    font-size: 16px;
    border-radius: 22px;
}

#lista-tarefas > button:hover {
    background-color: #257029;
}