/* Styles for DynamicList widget */
.dynamic-list-remove-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 18px;
  height: 18px;
  opacity: 0.3;      
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 50%;
}
.dynamic-list-remove-btn:hover,
.dynamic-list-add-btn span:first-of-type:hover {
  opacity: 1;
  cursor: pointer;
  background: rgb(200, 200, 200);
}
.dynamic-list-remove-btn:hover {
  color: red;
}
.dynamic-list-add-btn span:first-of-type:hover {
  color: green;
}
.dynamic-list-add-btn {
  display: flex;
  align-items: center;  
  margin-top: 1em;
}
.dynamic-list-add-btn span:first-of-type {
  position: relative;
  width: 40px;
  height: 40px;
  opacity: 0.3;  
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 50%;
}
.dynamic-list-add-btn span:first-of-type {
  font-size: 3em;
}