* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
.page-container {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #606a7c;
  background-image: radial-gradient(
      at 47% 33%,
      hsl(68.7, 100%, 87%) 0,
      transparent 59%
    ),
    radial-gradient(at 82% 65%, hsl(5.07, 52%, 74%) 0, transparent 55%);
  padding: 1rem;
}
.app-container {
  height: 100%;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background-color: #414141;
  border-radius: 2rem;
  gap: 1rem;
  padding: 1rem;
}
.head-bar {
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #414141;
  border-radius: 2em;
  color: #d9d9d9;
}
#title {
  font-size: 1.5rem;
}
.mid-container {
  height: 88%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.list-container,
.pomodoro-container {
  border-radius: 2em;
  flex: 1 1 100%;
  min-height: 300px;
  background-color: #414141;
}
.list-container {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.card {
  backdrop-filter: blur(25px) saturate(100%);
  -webkit-backdrop-filter: blur(25px) saturate(100%);
  background-color: rgba(17, 25, 40, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}
.card2 {
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  background-color: rgba(17, 25, 40, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}
.card3 {
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  background-color: rgba(195, 195, 195, 0.26);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}
.card4 {
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  background-color: rgba(102, 102, 102, 0);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}
.add-tasks {
  /* height: 3rem; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.5rem;
}
.task-input {
  height: 2rem;
  flex: 1 1 auto;
  min-width: 150px;
  padding: 0.75em;
}
.submit-task {
  height: 2rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d9d9d9;
}
.tasks-list {
  height: 100%;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 1rem;
  min-height: 200px;
  max-height: 60vh;
  overflow-y: auto;

  color: aliceblue;
}
.task {
  display: flex;
  padding: 0.25rem 0.5rem;
  width: 100%;
  min-height: 40px;
  align-items: center;
}
.tasks-list::-webkit-scrollbar {
  width: 8px;
}
.tasks-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.tasks-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
/* RESPONSIVE BREAKPOINTS */
@media (min-width: 768px) {
  .mid-container {
    flex-wrap: nowrap;
  }

  .list-container {
    flex: 1 1 30%;
  }

  .pomodoro-container {
    flex: 1 1 65%;
  }
}
@media (max-width: 390px) {
  .task-input {
    width: 80px;
  }
}
.btn:active {
  border: 1px solid white;
}
.input {
  font-size: 1rem;
  color: aliceblue;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
}
.input:active {
  outline: 0.025em solid white;
}
.input:hover {
  cursor: url("assets/cursor.png"), text;
}
.pomodoro-container {
  padding: 1rem;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: aliceblue;
}
.timer {
  height: 100%;
  max-height: 20rem;
  width: 100%;
  max-width: 36rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: clamp(2rem, 10vw, 8rem);
  font-weight: bold;
}
.modes {
  width: 90%;
  padding: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
}
.focus,
.shortb,
.longb,
.start-stop,
.reset {
  padding: 0.5rem;
  border: 1px solid aliceblue;
  border-radius: 1rem;
}
.timer {
  height: 100%;
  max-height: 20rem;
  width: 100%;
  max-width: 36rem;
}
.timer-opts {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  font-size: 1.25rem;
  padding: 1rem;
  gap: 1rem;
}
.small-time-opts,
.small-start-stop,
.small-reset {
  display: none;
}
@media (max-width: 767px) {
  .modes {
    display: none;
  }
  .timer {
    max-height: 10rem;
  }
  .timer-opts {
    display: none;
  }
  .timer-settings {
    display: none;
  }
  .small-timer-opts {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    font-size: 1.25rem;
    padding: 1rem;
    gap: 1rem;
  }
  .small-start-stop,
  .small-reset {
    display: inline;
    padding: 0.5rem;
    border: 1px solid aliceblue;
    border-radius: 1rem;
  }
  .timer {
    max-height: 10rem;
    font-size: clamp(2rem, 8vw, 6rem);
  }
  .tasks-list {
    max-height: calc(5 * (40px + 0.5rem));
    overflow-y: auto;
    scrollbar-width: thin;
    -ms-overflow-style: thin;
  }
}
.btn,
.task,
.focus,
.shortb,
.longb,
.start-stop,
.reset,
.timer-settings,
.small-reset,
.small-start-stop,
.small-timer-opts,
.checkbox {
  cursor: pointer;
}