@charset "UTF-8";
*, html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

body {
  max-height: 96vh;
  margin: 2vh 1vw 2vh 1vw;
  padding-top: 10vh;
  background-color: #3a3f4a;
  background-image: url("../images/5073414_large.jpg");
  background-repeat: repeat;
  background-position: center top;
  background-clip: content-box;
  background-size: 100%;
  border: 4px double black;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header {
  width: 100%;
  text-align: center;
}
header h1 {
  font-size: 2.5rem;
  color: ghostwhite;
  text-shadow: 4px 4px 0px black;
}

main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
}
main h3 {
  font-size: 1.5rem;
}
main .input-container {
  width: 40%;
  min-height: 30vh;
  height: fit-content;
  max-width: 30vmax;
  border: 2px solid black;
  border-radius: 30px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
}
main .input-container h1 {
  width: 100%;
  text-align: left;
}
main .input-container #newTaskInput {
  min-width: 98%;
  height: 2rem;
  border: 2px solid deepskyblue;
  border-radius: 10px;
  margin: auto;
  padding-left: 0.5rem;
  background-color: rgba(255, 255, 255, 0.4);
  font-weight: bolder;
  color: black;
}
main .input-container #newTaskInput:focus {
  outline: none;
  border: 2px solid blue;
}
main .input-container .button-container {
  margin-top: 10px;
  width: 100%;
  text-align: right;
  padding-right: 10px;
}
main .input-container .button-container #addButton {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(0, 170, 255, 0.8);
  border-radius: 50%;
  background-color: rgba(0, 115, 223, 0.8);
  font-weight: 600;
  color: ghostwhite;
  cursor: pointer;
}
main .input-container .button-container #addButton:active {
  transform: translate(1px, 1px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
}
main .input-container #task-already-exist {
  margin-top: 2rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: red;
}
main #tasklist {
  width: 40%;
  min-height: 30vh;
  height: fit-content;
  max-width: 30vmax;
  border: 2px solid black;
  border-radius: 30px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
}
main #tasklist h3 {
  margin-right: 1rem;
}
main #tasklist #tasklist-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main #tasklist #tasklist-container #readyItems {
  width: 250px;
  height: fit-content;
  text-align: center;
  font-size: 0.8rem;
  padding: 5px;
  border-radius: 10px;
}
main #tasklist ul {
  list-style-type: none;
  padding-left: 0;
}
main #tasklist li {
  width: 100%;
  border-bottom: 1px dotted rgb(255, 255, 255);
  display: flex;
  align-items: baseline;
  position: relative;
  padding-left: 0;
  cursor: pointer;
}
main #tasklist li .list-text-content {
  margin-right: auto;
  flex-grow: 1;
}
main #tasklist li::before {
  content: "𐤏";
  color: red; /* Snygg färg på markören */
  font-size: 1rem;
  margin-right: 8px; /* Ger lite luft mellan markör och text */
  flex-shrink: 0;
}
main #tasklist .explanation {
  font-size: 18px;
  margin-bottom: 0;
}
main #tasklist .undo-expl {
  font-size: 12px;
  margin-top: 0;
}
main #tasklist .itemDone {
  color: greenyellow;
  text-decoration: line-through;
  text-shadow: 0 0 3px black;
}
main #tasklist .material-symbols-outlined {
  vertical-align: bottom;
  font-size: 1rem;
  font-variation-settings: "FILL" 0.2, "wght" 300, "GRAD" 0, "opsz" 24;
}/*# sourceMappingURL=style.css.map */