.select2-container {
  width: 100% !important;
}

.select2-selection {
  border: 1px solid #d1d5db !important;
  border-radius: 0.5rem !important;
  min-height: 42px !important;
  background-color: #f9fafb !important;
  font-size: 0.875rem !important;
}

.select2-selection:focus,
.select2-selection:focus-within {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
  outline: none !important;
}

.select2-selection__rendered {
  color: #111827 !important;
  padding: 10px 12px !important;
  line-height: 1.5 !important;
}

.select2-selection__placeholder {
  color: #111827 !important;
}

.select2-selection__arrow {
  height: 40px !important;
  right: 8px !important;
}

.select2-selection__arrow b {
  border-color: #6b7280 transparent transparent transparent !important;
  border-width: 6px 6px 0 6px !important;
}

.select2-dropdown {
  border: 1px solid #d1d5db !important;
  border-radius: 0.5rem !important;
  background-color: #f9fafb !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.select2-search__field {
  border: 1px solid #d1d5db !important;
  border-radius: 0.375rem !important;
  padding: 8px 12px !important;
  color: #111827 !important;
  background-color: #f9fafb !important;
  font-size: 0.875rem !important;
}

.select2-search__field:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
  outline: none !important;
}

.select2-results__option {
  padding: 10px 12px !important;
  color: #111827 !important;
  background-color: transparent !important;
  font-size: 0.875rem !important;
}

.select2-results__option--highlighted {
  background-color: #3b82f6 !important;
  color: #ffffff !important;
}

.select2-results__option--selected {
  background-color: #dbeafe !important;
  color: #1d4ed8 !important;
}

.select2-selection__clear {
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  font-size: 14px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  color: #6b7280 !important;
  background-color: transparent !important;
  z-index: 10 !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.select2-selection__clear:hover {
  color: #ef4444 !important;
  background-color: rgba(239, 68, 68, 0.1) !important;
  transform: translateY(-50%) scale(1.1) !important;
}


.select2-selection--single .select2-selection__rendered {
  padding-right: 60px !important;
}

/* Estilos para seleções múltiplas (caso sejam usadas) */
.select2-selection__choice {
  background-color: #3b82f6 !important;
  border: 1px solid #3b82f6 !important;
  border-radius: 0.375rem !important;
  color: #ffffff !important;
  padding: 6px 26px 6px 8px !important;
  margin: 2px !important;
  font-size: 0.875rem !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: top !important;
}

.select2-selection__choice__remove {
  color: #ffffff !important;
  position: absolute !important;
  right: 4px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 18px !important;
  height: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  font-size: 12px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  text-decoration: none !important;
  z-index: 10 !important;
  transition: all 0.2s ease !important;
}

.select2-selection__choice__remove:hover {
  color: #ffffff !important;
  background-color: rgba(239, 68, 68, 0.8) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.select2-selection__choice__remove:before {
  content: '×' !important;
  font-weight: bold !important;
}

.select2-container.error .select2-selection {
  border-color: #ef4444 !important;
  background-color: #f9fafb !important;
}

.select2-container.error .select2-selection:focus,
.select2-container.error .select2-selection:focus-within {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.select2-container.error .select2-selection__rendered {
  color: #7f1d1d !important;
}

.select2-container.error .select2-dropdown {
  border-color: #ef4444 !important;
}

.select2-container.error .select2-search__field {
  border-color: #ef4444 !important;
}

.select2-container.error .select2-search__field:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* TEMA ESCURO */
.dark .select2-selection {
  border-color: #6b7280 !important;
  background-color: #4b5563 !important;
}

.dark .select2-selection:focus,
.dark .select2-selection:focus-within {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.dark .select2-selection__rendered {
  color: #ffffff !important;
}

.dark .select2-selection__placeholder {
  color: #ffffff !important;
}

.dark .select2-selection__arrow b {
  border-color: #9ca3af transparent transparent transparent !important;
}

.dark .select2-dropdown {
  border-color: #6b7280 !important;
  background-color: #4b5563 !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1) !important;
}

.dark .select2-search__field {
  border-color: #6b7280 !important;
  background-color: #374151 !important;
  color: #ffffff !important;
}

.dark .select2-search__field:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.dark .select2-results__option {
  color: #ffffff !important;
}

.dark .select2-results__option--highlighted {
  background-color: #3b82f6 !important;
  color: #ffffff !important;
}

.dark .select2-results__option--selected {
  background-color: #1e40af !important;
  color: #dbeafe !important;
}

.dark .select2-selection__clear {
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  font-size: 14px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  color: #9ca3af !important;
  background-color: transparent !important;
  z-index: 10 !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.dark .select2-selection__clear:hover {
  color: #ef4444 !important;
  background-color: rgba(239, 68, 68, 0.1) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.dark .select2-selection--single .select2-selection__rendered {
  padding-right: 60px !important;
}

.dark .select2-selection__choice {
  background-color: #3b82f6 !important;
  border-color: #3b82f6 !important;
  color: #ffffff !important;
  padding: 6px 26px 6px 8px !important;
  margin: 2px !important;
  font-size: 0.875rem !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: top !important;
}

.dark .select2-selection__choice__remove {
  color: #ffffff !important;
  position: absolute !important;
  right: 4px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 18px !important;
  height: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  font-size: 12px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  text-decoration: none !important;
  z-index: 10 !important;
  transition: all 0.2s ease !important;
}

.dark .select2-selection__choice__remove:hover {
  color: #ffffff !important;
  background-color: rgba(239, 68, 68, 0.8) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.dark .select2-selection__choice__remove:before {
  content: '×' !important;
  font-weight: bold !important;
}

.dark .select2-container.error .select2-selection {
  border-color: #ef4444 !important;
  background-color: #4b5563 !important;
}

.dark .select2-container.error .select2-selection:focus,
.dark .select2-container.error .select2-selection:focus-within {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.dark .select2-container.error .select2-selection__rendered {
  color: #fca5a5 !important;
}

.dark .select2-container.error .select2-dropdown {
  border-color: #ef4444 !important;
}

.dark .select2-container.error .select2-search__field {
  border-color: #ef4444 !important;
}

.dark .select2-container.error .select2-search__field:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}
