@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
  background-color: #181825;
  font-family: 'Inter', sans-serif;
  color: #cdd6f4;
}

.title {
  border: 2px solid transparent;
  background-color: #11111b;
  margin: 10px;
  text-align: center;
  border-radius: 6px;
}

.add {
  background-color: #11111b;
  padding: 10px 10px 10px 35px;
  margin: 10px;
  position: relative;
  border-radius: 6px;
  display: flex;
  align-items: center;
  background-image: url('images/input/add.svg');
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 10px center;
}

.add input {
  background-color: transparent;
  border: none;
  outline: none;
  color: #cdd6f4;
  font-size: 14px;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.add button img {
  width: 16px;
  height: 16px;
}

.add button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.add select {
  background-color: transparent;
  border: none;
  outline: none;
  color: #cdd6f4;
  font-size: 14px;
  width: 150px;
  font-family: 'Inter', sans-serif;
}

.add select option {
  background-color: #11111b;
  color: #cdd6f4;
}

.add input::placeholder {
  color: #6c7086;
}

.separator {
  background-color: #6c7086;
  margin: 10px;
  height: 2px;
  border-radius: 1px;
}

.container {
  background-color: #11111b;
  padding: 10px 35px 10px 10px;
  margin: 10px;
  position: relative;
  border-radius: 6px;
}

.container.finished div:first-child {
  text-decoration: line-through;
  opacity: 0.7;
}

.task-info {
  display: flex;
  align-items: center;
  margin-top: 5px;
  font-size: 12px;
  gap: 5px;
}

.task-text {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  transition: opacity 0.1s ease;
}

.task-info img.prompt {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(20%) saturate(359%) hue-rotate(193deg) brightness(92%) contrast(90%);
}

.task-info span.details {
  color: #6c7086;
}

.close {
  position: absolute;
  right: 10px;
  top: 22.5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  filter: brightness(0) saturate(100%) invert(73%) sepia(29%) saturate(582%) hue-rotate(317deg) brightness(99%) contrast(90%);
}

.close:hover {
  color: #eba0ac;
  opacity: 0.7;
}

.status {
  position: absolute;
  right: 35px;
  top: 22.5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
