body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
}
.container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 400px;
  margin: auto;
}
textarea {
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
}
select,
button {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
}
ul {
  list-style: none;
  padding: 0;
}
li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}
.done {
  text-decoration: line-through;
  color: gray;
}
.profile,
.time {
  margin-bottom: 10px;
  font-weight: bold;
}

.todoitem {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.todoitemtitle {
  flex: 1;
  margin-right: 10px;
  flex-direction: column;
  display: flex;
  text-align: left;
}
