/* 🌿 Wrapper externo com label flutuante opcional */
.select2-form-floating {
    position: relative;
    margin-bottom: 2rem;
}

/* 🌿 Label fixa simulando floating */
.select2-form-floating>label {
    position: absolute;
    top: 16px !important;
    left: 13px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #6C737F;
    background: transparent !important;
    padding: 0 6px;
    z-index: 5;
    pointer-events: none;
}

/* 🌿 Container principal */
.select2-container--default .select2-selection--multiple {
    background-color: #ffffff !important;
    border: 1px solid #D9D9D9 !important;
    border-radius: 10px !important;
    min-height: 60px !important;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
    color: #6C737F !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    transition: border-color 0.3s ease-in-out !important;
}

/* 🌿 Foco no campo */
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #6366F1 !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2) !important;
}

/* 🌿 Texto digitável */
.select2-container--default .select2-search--inline .select2-search__field {
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
    color: #6C737F !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6C737F !important;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.select2-placeholder {
    color: #6C737F !important;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin-left: 20px !important;    
}


/* Remove seta nativa */
.select2-container .select2-selection--single {
  position: relative;
}

.select2-chevron-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem !important;
  color: #6C737F !important;
  pointer-events: none;
}

/* 🌿 Container das tags dentro do campo */
.select2-selection--multiple .select2-selection__rendered {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    align-items: center !important;
    padding: 0 !important;
    margin-top: 20px !important;
    margin-bottom: -5px !important;
    margin-left: 10px !important;
}

/* 🌿 Tags (itens selecionados) */
.select2-selection__choice {
    background-color: #6366F1 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 5px 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    max-width: 100%;
}

/* 🌿 Botão de remover item (X) */
.select2-selection__choice__remove {
    color: #ffffff !important;
    margin-left: 6px !important;
    font-size: 14px !important;
    border: none !important;
    background: none !important;
    cursor: pointer !important;
    line-height: 1 !important;
    order: 2 !important;
}

/* 🌿 Dropdown */
.select2-container--default .select2-dropdown {
    background-color: #ffffff !important;
    border: 1px solid #D9D9D9 !important;
    border-radius: 10px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 10000;
}

/* 🌿 Opções no menu */
.select2-results__option {
    padding: 10px 16px !important;
    cursor: pointer !important;
}

/* 🌿 Hover nas opções */
.select2-results__option--highlighted {
    background-color: #6366F1 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
}