body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
}

h1 {
  margin-bottom: 15px;
}

input {
  padding: 8px;
  width: 220px;
  font-size: 16px;
}

button {
  padding: 8px 12px;
  margin-left: 5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: white;
  background-color: #4caf50; 
}


button:hover {
  opacity: 0.9;
}

/* Filter buttons */
.filters {
  margin: 15px 0;
}

.filters button {
  background-color: #555;
}

/* Task list */
ul {
  list-style: none;
  padding: 0;
  width: 300px;
}

li {
  background: white;
  padding: 8px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
}

li:hover {
  background: #f0f0f0;
}

.completed {
  text-decoration: line-through;
  color: gray;
}

/* Edit button */
.edit-btn {
  background-color: #2196f3;
  margin-left: 5px;
}

/* Delete button */
.delete-btn {
  background-color: #f44336;
  margin-left: 5px;
}

#emptyMessage {
  display: block;
  color: #777;
  font-style: italic;
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
  
  /* Fade effect */
  opacity: 0;
  transition: opacity 0.5s ease; /* smooth fade */
}
#emptyMessage.show {
  opacity: 1;
}