@import url("https://cdn.jsdelivr.net/npm/pretendard/dist/web/static/pretendard.css");
body {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  background-color: #f5f6fa;
  margin: 0;
  padding: 40px;
  /*todo list들이 세로로 배열되도록*/
  display: flex;
  flex-direction: column;
  align-items: center;
}

#title {
  color: #636161;
  font-size: 28px;
  margin-bottom: 20px;
  cursor: pointer;
}
#title:hover {
  color: purple;
}
#inputDiv {
  width: 320px;
}

#todoInput {
  padding: 7px 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

#todoInput:focus {
  border-color: #4a90e2;
}

#addBtn {
  margin-left: 4px;
  padding: 5px 10px;
  font-size: 16px;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#addBtn:hover {
  background-color: #357abd;
}
#countDisplay {
  width: 30px;
  margin-left: 10px;
  font-size: large;
}
/* 리스트 */
#todoList {
  margin-top: 20px;
  padding: 0;
}

#todoList li {
  width: 320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  margin: 6px 0;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: #444;
}

/* 삭제 버튼 */
.deleteBtn {
  background-color: transparent;
  color: #e74c3c;
  border: none;
  font-size: 14px;
  cursor: pointer;
  width: 40px;
  flex-shrink: 0;
}

.deleteBtn:hover {
  color: #c0392b;
}

#get-by-date {
  margin-bottom: 50px;
}
