/* ########################
    Tasks Styles
########################## */

/* Container of the task selection section */
#change-task {
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--color-task-light, #ccc);
  border-radius: 1rem;
  background-color: var(--color-task-dark, #f9f9f9);
}

#change-task h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: rgb(211, 210, 210);
}

/* Task creation box */
#task-creation-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-task, #eee);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

#task-creation-div:hover {
  background-color: var(--color-task-dark, #c62828);
}

/* Input inside edit tasks */
#edit-tasks #input-task-name {
  width: 100%;
  padding: 0.6rem;
  font-size: 1rem;
  border: none;
}

/* Pomodoro amount input */
#input-pomodoro-amount {
  width: 40%;
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}

/* Each task item box */
.task-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: bold;
  margin: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#task-creation {
  display: flex;
  flex-direction: column;
}
