.memo {
  display: flex;
  padding: 20px;
  justify-content: space-between;
}

.memo-list {
  width: 30%;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.memo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.memo-item:last-child {
  border-bottom: none;
}

.editor {
  width: 60%;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

h1 {
  text-align: center;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 15px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

.delete-memo {
  background-color: #dc3545;
}

.delete-memo:hover {
  background-color: #c82333;
}