.autocomplete-suggestions {
  text-align: left;
  cursor: default;
  border: 1px solid #ccc;
  border-top: 0;
  background: #fff;
  box-shadow: 0 0 3px #0082c899;
  /* core styles should not be changed */
  position: absolute;
  display: none;
  z-index: 9999;
  max-height: 254px;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
.autocomplete-suggestions.add-item-popup:hover {
  background-color: #dfedfe;
}

a.open-modal {
  font-size: 0.875rem;
}

.autocomplete-suggestion {
  position: relative;
  padding: 5px 10px;
  line-height: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.6em;
  color: #006cb8;
}
.autocomplete-suggestion b {
  font-weight: 700;
}
.autocomplete-suggestion.selected {
  background: #dfedfe;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent overlay */
  z-index: 9998;
  /* Ensure the overlay appears above other elements */
  display: none;
  /* Hidden by default */
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #BBB;
  background-color: #FFF;
  box-shadow: 3px 3px 4px 0px rgba(198, 219, 238, 0.5);
  padding: 10px 20px;
  min-width: 300px;
  z-index: 9999;
  /* Ensure the popup appears above the overlay */
  display: none;
  /* Hidden by default */
}
.popup .autocomplete-suggestion {
  padding: 0;
}
.popup-content {
  display: flex;
  flex-direction: column;
}
.popup-content-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 34px;
  color: #222;
}
.popup-content-input {
  margin-bottom: 14px;
  height: 33px;
  padding: 5px;
  border-radius: 0;
  border: 1px solid #bbb;
}
.popup-content-actions {
  display: flex;
}
