body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background: white;
  font-family: monospace;
  font-size: 14px;
}

.todo-container {
  padding: 20px;
  min-width: 300px;
}

.title {
  text-align: center;
  margin-bottom: 20px;
  /* border: 1px solid black;  */
  border-bottom: #000 solid 1.5px;
}

.input-container {
  margin: 20px 0;
}

input[type="text"] {
  font-family: monospace;
  padding: 5px;
  border: 1px solid #000;
  width: calc(100% - 12px);
  background: white;
  outline: none;
}

.todo-list {
  margin: 20px 0;
  cursor: pointer;
}

.todo-item {
  margin: 5px 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.todo-item:hover {
  background: #f5f5f5;
}

.stats {
  margin-top: 20px;
  text-align: center;
}

.clear-button {
  margin-top: 10px;
  cursor: pointer;
  text-align: center;
}

.clear-button:hover {
  background: #f5f5f5;
}

.box {
  /* border: 1px solid black; */
  padding: 5px;
  margin: 2px 0;
}

.delete-button {
  font-family: monospace;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 5px;
  opacity: 0;
  transition: opacity 0.2s;
}

.todo-item:hover .delete-button {
  opacity: 1;
}

.delete-button:hover {
  background: #f5f5f5;
}

