
.cbv2[data-v-368f0a3b] {
  position: relative;
  min-width: 160px;
}
.cbv2-trigger[data-v-368f0a3b] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cbv2-trigger[data-v-368f0a3b]:hover:not(.cbv2-trigger--disabled) {
  border-color: #cbd5e1;
}
.cbv2-trigger--open[data-v-368f0a3b] {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}
.cbv2-trigger--disabled[data-v-368f0a3b] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cbv2-trigger--multiple[data-v-368f0a3b] {
  min-height: 42px;
  padding: 4px 8px 4px 14px;
  flex-wrap: wrap;
}
.cbv2-content[data-v-368f0a3b] {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.cbv2-value[data-v-368f0a3b] {
  font-size: 14px;
  color: #374151;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: 100%;
}
.cbv2-placeholder[data-v-368f0a3b] {
  font-size: 14px;
  color: #9ca3af;
}
.cbv2-badge[data-v-368f0a3b] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: #eff6ff;
  color: #1e40af;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  max-width: 140px;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cbv2-badge[data-v-368f0a3b]:hover {
  background: #dbeafe;
}
.cbv2-badge--colored[data-v-368f0a3b]:hover {
  filter: brightness(0.96);
}
.cbv2-badge-dot[data-v-368f0a3b],
.cbv2-option-dot[data-v-368f0a3b] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}
.cbv2-option-dot[data-v-368f0a3b] {
  margin-right: 8px;
}
.cbv2-value--colored[data-v-368f0a3b] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  max-width: 100%;
}
.cbv2-badge-text[data-v-368f0a3b] {
  overflow: hidden;
  text-overflow: ellipsis;
}
.cbv2-badge-icon[data-v-368f0a3b] {
  flex-shrink: 0;
}
.cbv2-arrow[data-v-368f0a3b] {
  color: #6b7280;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.cbv2-arrow--rotated[data-v-368f0a3b] {
  transform: rotate(180deg);
}

.cbv2-dropdown {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1200;
  pointer-events: auto;
  width: -moz-max-content;
  width: max-content;
}
.cbv2-search {
  position: relative;
  padding: 8px;
  border-bottom: 1px solid #f3f4f6;
}
.cbv2-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}
.cbv2-search-input {
  width: 100%;
  height: 32px;
  padding: 0 12px 0 30px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  outline: none;
  font-size: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cbv2-search-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.cbv2-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  justify-content: center;
  color: #6b7280;
  font-size: 13px;
}
.cbv2-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 0, 0, 0.08);
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: cbv2-spin 0.9s linear infinite;
}
@keyframes cbv2-spin {
to { transform: rotate(360deg);
}
}
.cbv2-options {
  list-style: none;
  margin: 0;
  padding: 4px;
  overflow-y: auto;
  flex: 1;
}
.cbv2-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  color: #374151;
  font-size: 13px;
  transition: background 0.15s ease, color 0.15s ease;
}
.cbv2-option--active,
.cbv2-option:hover {
  background: #f8fafc;
  color: #1e293b;
}
.cbv2-option--selected {
  background: #f0f7ff;
  color: #2563eb;
  font-weight: 500;
}
.cbv2-option-label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.cbv2-option-subtext {
  font-size: 12px;
  color: #6b7280;
}
.cbv2-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cbv2-option--selected .cbv2-check {
  background: #3b82f6;
  border-color: #3b82f6;
}
.cbv2-empty {
  padding: 16px;
  text-align: center;
  color: #64748b;
  font-size: 13px;
}
.cbv2-option--create {
  color: #2563eb;
  font-weight: 500;
  border-top: 1px solid #f3f4f6;
}
.cbv2-option--create:hover {
  background: #eff6ff;
  color: #1d4ed8;
}
.cbv2-create-icon {
  color: currentColor;
  flex-shrink: 0;
}
.cbv2-footer {
  padding: 8px;
  border-top: 1px solid #f3f4f6;
}
.cbv2-fade-enter-active,
.cbv2-fade-leave-active {
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.cbv2-fade-enter-from,
.cbv2-fade-leave-to {
  opacity: 0;
  transform: translateY(-4px);
}
