
.dropdown-default-ui[data-v-ac2185e9] {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: auto;
}

/* Slot customizado - completamente transparente, sem estilos visuais */
.dropdown-default-ui__trigger-slot[data-v-ac2185e9] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Sem bordas, padding, background - apenas o conteúdo do slot */
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  width: auto !important;
  height: auto !important;
  pointer-events: auto;
}

/* Quando tem slot customizado, esconde o trigger padrão */
.dropdown-default-ui--custom-trigger .dropdown-default-ui__trigger[data-v-ac2185e9] {
  display: none !important;
}

/* Trigger padrão (sem slot customizado) */
.dropdown-default-ui__trigger[data-v-ac2185e9] {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  background: #ffffff;
  border: 1px solid #dfe1e6;
  border-radius: 6px;
  font-size: 13px;
  color: #172b4d;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.dropdown-default-ui__trigger[data-v-ac2185e9]:hover {
  border-color: #0052cc;
  background-color: #f8f9fa;
}

/* Estilos globais para o menu (renderizado no body via teleport) */
.dropdown-default-ui__menu {
  background: #ffffff !important;
  border: 1px solid #dfe1e6;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999999999 !important;
  max-height: 400px !important;
  max-width: 320px !important;
  min-width: 160px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 4px !important;
  position: fixed !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  isolation: isolate;
  opacity: 1 !important;
  /* Importante: evitar que seja clipped por overflow hidden dos pais */
  clip-path: none !important;
  -webkit-clip-path: none !important;
}
.dropdown-default-ui__menu-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dropdown-default-ui__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #172b4d;
  cursor: pointer;
  border-radius: 12px;
  transition: background-color 0.15s;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 0;
}
.dropdown-default-ui__item > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropdown-default-ui__item:hover {
  background-color: #f8f9fa;
}
.dropdown-default-ui__item--active {
  background-color: #e3f2fd;
  color: #0052cc;
  font-weight: 600;
}
.dropdown-default-ui__item--disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.dropdown-default-ui__item--disabled:hover {
  background-color: transparent;
}

/* Aplicar cor aos ícones quando allowColoredIcons está ativo */
.dropdown-default-ui__item svg {
  color: var(--option-icon-color, currentColor);
}
