.combobox {
  position: relative;
  width: 200px;
}

#comboInput {
  width: 87%;
  outline: none;
  
}


.input_combo{
  position: relative;
}
.options {
 
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-height: 25rem;
  overflow-y: auto;
  display: none;
  position: absolute;
  z-index: 9999;
}

.option {
  padding: 8px;
  cursor: pointer;
  font-family: 'Montserrat';
}

.option:hover {
  background-color: #f0f0f0;
}

.no-match {
  padding: 8px;
  color: #999;
  font-style: italic;
}

.option__selected {
  background: var(--azul-claro);
  color: white;
}
.option__preselected {
  background: gray ;
  color: white;
}