body {
  font-family: Arial;
  background: #121212;
  color: white;
  text-align: center;
}

.light-mode {
  background: white;
  color: black;
}

.container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.task-section, .timer-section {
  background: #1e1e1e;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  width: 40%;
}

.light-mode .task-section,
.light-mode .timer-section {
  background: #f2f2f2;
}

button {
  padding: 8px;
  margin: 5px;
  cursor: pointer;
}

li {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.chart-container {
  width: 80%;
  margin: 30px auto;
}
