@charset "utf-8";

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  background-color: #fff;
  font-weight: bold;
  color: #4b4b4b;
  line-height: 1.5;
}

.container {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
} 

.inputArea {
  padding: 10px;
  background-color: #61c3d4;
}

.inputArea input {
  min-width: 400px;
  border-radius: 3px;
  border: none;
  padding: 5px;
}

.toDoWrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 10px;
}

.incompleteList {
  border: solid 1px #61c3d4;
  min-width: 300px;
}

.completeList {
  border: solid 1px #61c3d4;
  min-width: 300px;
  color: #61c3d4;
}

button {
  border: none;
  font-size: small;
  margin: 3px;
  padding: 5px;
  border-radius: 3px;
}

.delete-btn {
  color: #4b4b4b;
}

button:hover {
  background-color: #bae6ee;
  color: #fff;
  cursor: pointer;
}

p {
  text-align: center;
}

@media (max-width: 768px) {
  .toDoWrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 10px;
}
  .inputArea input {
  min-width: 200px;
}}