/* d:\Code\atspal-platform\general\css\combobox.css */
.custom-combobox-container {
  position: relative;
  width: 100%;
}

.combobox-input {
  width: 100%;
  padding-right: 25px; /* Space for an arrow or icon */
}

.combobox-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-top: none;
  background-color: #fff;
  z-index: 1000;
  display: none; /* Initially hidden */
}

.combobox-option {
  padding: 8px 12px;
  cursor: pointer;
}

.combobox-option:hover, .combobox-option.highlighted {
  background-color: #f0f0f0;
}
