.wmcl-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wmcl-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wmcl-item:hover {
  background-color: #eef6ff;
}

.wmcl-item.done {
  background-color: #e6ffe6;
}

.wmcl-item i {
  font-size: 20px;
  margin-right: 12px;
  color: #0073aa;
  flex-shrink: 0;
}

.wmcl-item.done i {
  color: #2ecc71;
}

.wmcl-item span {
  font-size: 16px;
  color: #1e1e1e;
  flex: 1;
}

.wmcl-item { cursor:pointer; }
