* {
  margin: 0;
  padding: 0;
}
body {
  width: 100vw;
  height: 100vh;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.context-menu {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  color: black;
}

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

.context-menu ul li {
  padding: 8px 12px;
  cursor: pointer;
}

.context-menu ul li:hover {
  background-color: #eee;
}

.task-done {
  text-decoration: line-through;
  color: gray;
}

.importBtn {
  position: absolute;
  top: 50px;
  right: 160px;
  font-size: 1em;
  padding: 0.2em;
}
#fileInput {
  position: absolute;
  top: 10px;
  right: 0px;
}
.exportBtn {
  position: absolute;
  top: 50px;
  right: 20px !important;
  font-size: 1em;
  padding: 0.2em;
}
.container {
  width: 100vw;
  height: 100vh;
  border: 1px solid red;
  display: flex;
}
.unsorted {
  width: 20vw;
  height: 100vh;
  background-color: gray;
}
.main {
  width: 60vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.row {
  width: 60vw;
  height: 100vh;
  display: flex;
}
.col {
  width: 30vw;
  height: 50vh;
  display: flex;
  flex-direction: column;
}
.iu {
  background-color: darkred;
}
.inu {
  background-color: green;
}
.niu {
  background-color: darkslateblue;
}
.ninu {
  background-color: darkslategray;
}

.sidebar {
  background-color: darkblue;
  width: 20vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3em;

  & label {
    margin-top: 1em;
    font-size: 2em;
    margin-right: 10px;
  }

  & .section {
    font-size: 1em;
  }
  & .fcheckbox {
    margin-left: 1em;
    margin-top: 2em;
    transform: scale(2);
    border-radius: 20%;
  }
}
#title {
  width: 15vw;
  font-size: 2em;
  margin-top: 2em;
}
#notes {
  width: 15vw;
  font-size: 1.2em;
  margin-top: 2em;
  padding: 0.3em;
}

.submit,
.deleteTask,
.createTask {
  background-color: white;
  color: black;
  border-radius: 0.2em;
  outline: none;
  font-size: 2.5em;
  padding: 0.3em;
  margin-top: 0.3em;
  border: none;
  cursor: pointer;
  color: white;
}
.submit {
  background-color: green;
}
.deleteTask {
  background-color: red;
}
.createTask {
  background-color: blueviolet;
}

.heading {
  width: 30vw;
  height: 2vw;
  display: flex;
  font-size: 1.1em;
  align-items: center;
  justify-content: start;
  background-color: rgba(0, 0, 0, 0.2);

  & svg {
    cursor: pointer;
    margin-left: auto;
    margin-right: 1em;
    scale: 2;
  }
}
.uheading {
  width: 20vw;
  height: 2vw;
  display: flex;
  font-size: 1.1em;
  align-items: center;
  justify-content: start;
  background-color: rgba(0, 0, 0, 0.2);

  & svg {
    cursor: pointer;
    margin-left: auto;
    margin-right: 1em;
    scale: 2;
  }
}
.htitle {
  margin-left: 1em;
  font-weight: bolder;
}
.count {
  margin-left: 1em;
  font-weight: bolder;
  border-radius: 1em;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0.2em;
}

.hide {
  display: none;
}

.list {
  overflow-y: scroll;
  overflow-x: hidden;
  width: 30vw;
  height: 48vw;
  display: flex;
  flex-direction: column;
  font-size: 1em;
  /* align-items: center; */
  justify-content: start;

  & .item {
    cursor: pointer;
    margin-top: 0.5em;
    width: 30vw;
    height: 1.3em;
    font-size: 1.2em;
    display: flex;
    /* align-items: center; */
    align-items: start;
    justify-content: center;
    justify-content: start;
    & .item-checkbox {
      margin-left: 1em;
      margin-top: 0.5em;
      transform: scale(2);
      border-radius: 20%;
    }
    & .item-title {
      margin-left: 1em;
      font-size: 1.2em;
    }
  }
  & .item:hover {
    background-color: rgba(0, 0, 0, 0.4);
  }
}
.ulist {
  overflow-y: scroll;
  overflow-x: hidden;
  width: 20vw;
  height: 48vw;
  display: flex;
  flex-direction: column;
  font-size: 1em;
  /* align-items: center; */
  justify-content: start;

  & .item {
    cursor: pointer;
    margin-top: 0.5em;
    width: 30vw;
    height: 1.3em;
    font-size: 1.2em;
    display: flex;
    /* align-items: center; */
    align-items: start;
    justify-content: center;
    justify-content: start;
    & .item-checkbox {
      margin-left: 1em;
      margin-top: 0.5em;
      transform: scale(2);
      border-radius: 20%;
    }
    & .item-title {
      margin-left: 1em;
      font-size: 1.2em;
    }
  }

  & .item:hover {
    background-color: rgba(0, 0, 0, 0.4);
  }
}

.item-checkbox:checked + .item-title {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.7);
}
