body {
  font-family: Arial, sans-serif;
  width: 400px;
  padding: 10px;
}

h1 {
  font-size: 18px;
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

input, textarea {
  margin-bottom: 8px;
  padding: 6px;
  font-size: 14px;
}

textarea {
  resize: vertical;
  height: 60px;
}

.btn {
  padding: 6px 8px;
  margin-right: 5px;
  cursor: pointer;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 3px;
  font-size: 13px;
}

.btn:hover {
  background: #0056b3;
}

.btn.danger {
  background: #dc3545;
}

.btn.danger:hover {
  background: #a71d2a;
}

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

.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.title {
  flex-grow: 1;
  font-weight: bold;
}
