* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f4f4ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#container {
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 620px;
  width: 890px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 10px lightgray, 5px 5px 15px lightgray;
}

.main-div {
  position: relative;
  height: 100%;
  width: 45%;
}

.title {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin: 20px;
  margin-top: 60px;
  margin-left: 5px;
  margin-bottom: 12px;
  color: #555555;
}

.input-div {
  display: flex;
  margin-left: 5px;
  margin-right: 5px;
}

.task-input {
  border: none;
  border-bottom: 2px solid #555555;
  outline: none;
  background: transparent;
  padding: 5px 0;
  font-size: 14px;
  color: #555555;
  width: 85%;
  margin-right: 20px;
}

.add-btn {
  height: 30px;
  width: 30px;
  background-color: #555555;
  color: white;
  border-radius: 6px;
  margin-right: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-btn:hover {
  transform: scale(1.1);
}

.task-list-div {
  max-height: 50%;
  margin-top: 20px;
  margin-left: 5px;
  margin-right: 5px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #a9a9a9 #fff;
  scroll-behavior: smooth;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.li-item {
  border: 1px solid #555555;
  color: #555555;
  font-size: 14px;
  font-weight: 560;
  border-radius: 10px;
  min-height: 35px;
  width: 360px;
  padding: 4px;
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkbox {
  cursor: pointer;
  height: 15px;
  width: 15px;
  border-radius: 8px;
  appearance: none;
  background: transparent;
  border: 1px solid #555555;
  transition: all 0.2s ease;
}

.checkbox:hover {
  transform: scale(1.1);
}

.checkbox:checked {
  background-color: #555555;
  transform: scale(1.1);
}

.checkbox:checked::before {
  content: "\2713";
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
}

.li-item span {
  flex: 1;
  margin-left: 10px;
  word-wrap: break-word;
  overflow: hidden;
  word-wrap: break-word;
  white-space: normal;
}

.task-btns {
  display: flex;
  gap: 10px;
  margin-right: auto;
}

.edit-btn,
.del-btn {
  color: #555555;
  background: transparent;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.edit-input {
  flex: 1;
  margin-left: 10px;
  word-wrap: break-word;
  border: none;
  outline: none;
  border-bottom: #555555;
  color: #555555;
  font-size: 14px;
  font-weight: 560;
}

.task-btns button:hover {
  transform: scale(1.1);
}

.completed {
  text-decoration: 2px line-through;
  opacity: 0.8;
}

.quote {
  position: absolute;
  top: calc(50% + 180px);
  word-wrap: break-word;
  left: 10px;
  font-size: 14px;
  font-style: italic;
  color: #a2a2a2;
}


/*MEDIA QUERY FOR MOBILE*/
body {
  background-color: white;
}

@media (max-width: 768px) {
  #container {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0px;
    height: 100vh;
    width: 100vh;
  box-shadow: none;
    
  }

  .main-div {
    height: 100%;
    width: 100%;
  }

  .title {
    font-size: 25px;
    font-weight: bold;
    margin-top: 120px;
    margin-left: 30px;
    margin-bottom: 8px;
  }

  .input-div {
    display: flex;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 20px;
  }

  .task-input {
    font-size: 17px;
    width: 100%;
    margin-right: 10px;
  }

  .add-btn {
    height: 25px;
    width: 25px;
    margin-top: 10px;
    margin-left: 15px;
  }

  .task-list-div {
    width: 100%;
    height: 38%;
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 30px;
  }

  .li-item {
    width: 82%;
    padding: 2px;
    margin-bottom: 10px;
    height: 50px;
  }

  .checkbox {
    height: 12px;
    width: 12px;
    margin-left: 3px;
  }

  .li-item span,
  .edit-input {
    font-size: 17px;
  }

  .quote {
    top: calc(50% + 210px);
    left: 30px;
    right: 20px;
    font-size: 15px;
  }
  
}


/*# sourceMappingURL=styles.06d19ff39a7ad6e17757.css.map*/