body {
  font-family: 'Georgia', serif;
  background: #f4f1ea url('images/vintage-pocket-watch-7439233_640.jpg');
  background-size: cover;
  margin: 0;
  padding: 0;
  color: #3e2f2f;
}

.todo-container {
  max-width: 600px;
  margin: 60px auto;
  padding: 20px;
  background: rgba(255, 248, 220, 0.9);
  border: 2px solid #d1b48c;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

h1 {
  text-align: center;
  color: #5a3e36;
}

.input-section {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

input, button {
  padding: 10px;
  border: 1px solid #b2926d;
  border-radius: 5px;
}

#taskInput {
  flex: 1;
}

button {
  background: #8b5e3c;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #6b4226;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  background: #fff8e7;
  margin-bottom: 12px;
  padding: 12px;
  border-left: 5px solid #8b5e3c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
}

.completed {
  text-decoration: line-through;
  color: #777;
}

.task-actions button {
  margin-left: 6px;
  padding: 6px 10px;
  font-size: 0.9rem;
}
