#pomodoro-app h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

#pomodoro-app input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

#taskList {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

#taskList li {
  background: #fff;
  margin-bottom: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 5px solid #007bff;
  cursor: pointer;
  transition: background 0.2s;
}

#taskList li:hover {
  background: #f0f8ff;
}

#taskList li.done {
  text-decoration: line-through;
  color: gray;
  opacity: 0.6;
}

.pomodoro-btn {
  background-color: #007bff;
  border: none;
  color: white;
  padding: 10px 16px;
  margin: 5px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
  transition: background-color 0.3s ease;
}

.pomodoro-btn:hover {
  background-color: #0056b3;
}

.modeBtn {
  font-size: 13px;
}