#combo-check,
#combo-check input,
#combo-check select,
#combo-check button {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
#combo-check {
  overflow: visible;
}
#combo-check .combo-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  padding: 0 0.85rem;
  border-radius: 0.75rem;
  overflow: visible;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}
#combo-check .combo-field:focus-within {
  z-index: 30;
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.15);
}
#combo-check .combo-field.is-filled {
  border-color: rgba(34, 211, 238, 0.4);
  background: #0a0a0a;
}
#combo-check .combo-field-icon {
  color: #67e8f9;
  font-size: 0.85rem;
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
}
#combo-check .combo-input {
  width: 100%;
  min-width: 0;
  flex: 1;
  height: 2.85rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #0a0a0a !important;
  color: #f8fafc;
  outline: none;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}
#combo-check .combo-input::placeholder { color: #64748b; }
#combo-check .combo-input:-webkit-autofill,
#combo-check .combo-input:-webkit-autofill:hover,
#combo-check .combo-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #f8fafc;
  -webkit-box-shadow: 0 0 0 1000px #0a0a0a inset;
  caret-color: #f8fafc;
  transition: background-color 9999s ease-out;
}
#combo-check .combo-field.is-filled .combo-input { display: none; }
#combo-check .combo-dropdown {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  width: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
#combo-check .combo-dropdown.hidden {
  display: none;
}
#combo-check .combo-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 0.75rem;
  color: #e2e8f0;
  font-size: 0.875rem;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(10, 10, 10, 0.55);
  cursor: pointer;
}
#combo-check .combo-dropdown-item:hover,
#combo-check .combo-dropdown-item:focus {
  background: rgba(34, 211, 238, 0.1);
  outline: none;
}
#combo-check .combo-chip {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  color: #f8fafc;
  font-size: 0.9rem;
}
#combo-check .combo-field.is-filled .combo-chip {
  display: flex;
}
#combo-check .combo-chip-clear {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 9999px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  line-height: 1;
  font-size: 1rem;
  cursor: pointer;
}
#combo-check .combo-chip-clear:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
#combo-check .combo-error { color: #f87171; font-size: 0.875rem; text-align: center; }
