/* Minimal multi-select combobox styling */
.combobox {
  position: relative;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 6px 8px;
  background: #fff;
}
.combobox .cb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.combobox .cb-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e5f0ff;
  color: #1d4ed8;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
}
.combobox .cb-remove {
  border: none;
  background: transparent;
  color: #1d4ed8;
  cursor: pointer;
  font-size: 14px;
}
.combobox .cb-input {
  width: 100%;
  border: none;
  outline: none;
  padding: 6px 0;
}
.combobox .cb-list {
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  max-height: 220px;
  overflow: auto;
  z-index: 50;
}
.combobox .cb-option { padding: 8px 10px; cursor: pointer; }
.combobox .cb-option:hover { background: #f3f4f6; }
