/* Progress Bar */
.progress-container {
  margin-top: 1em;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: #4caf50;
  transition: width 0.3s ease;
  width: 0%;
}

.progress-bar::after {
  content: attr(data-progress);
  position: absolute;
  right: 10px;
  top: -20px;
  font-size: 12px;
  color: #4caf50;
}

/* To-Do List Styling */
.todo-list {
  list-style: none;
  padding-left: 0;
}

.todo-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}

.todo-list input[type="checkbox"] {
  margin-right: 10px;
  cursor: pointer;
}
