.organization-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  width: calc(100% - 2px); /* Adjust width to match input field */
  background-color: #fff;
  z-index: 1000;
  display: none; /* Initially hidden */
}

.organization-item {
  padding: 10px;
  cursor: pointer;
}

.organization-item:hover {
  background-color: #f0f0f0;
}

.input-wrap {
  position: relative; /* Ensure the dropdown is positioned relative to the input */
}

.preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader__content {
  text-align: center;
}