body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #9a9595;
    padding: 10px;
    max-width: 600px;
    margin: auto;
}

h1 {
    text-align: center;
    color: #333;
}

input[type="text"], input[type="date"] {
    padding: 10px;
    margin: 10px 10px;
    width: calc(50% - 50px);
    border: 1px solid #ccc;
    border-radius: 10px;
}

button {
    padding: 10px 16px;
    background-color: #f90808;
    color: white;
    border: none;
    border-radius: 5px;
    margin-left: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


#lista-de-tarefas {
    margin-top: 20px;
}

#lista-de-tarefas div {
    background-color: white;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

#lista-de-tarefas button {
    background-color: #f44336;
    padding: 6px 10px;
}
