/* Estilo do select control */
.select2-container--default .select2-selection--single {
  background-color: #ffffff !important;
  border: 1px solid #838383 !important;
  border-radius: 50px !important;
  height: auto !important;
  padding: 8px 12px !important;
}

/* Texto selecionado no select (mantém 16px) */
.select2-container--default .select2-selection__rendered {
  font-size: 16px !important;
  line-height: 1.4 !important;
}

/* Seta customizada (remove background default) */
.select2-container--default .select2-selection__arrow {
  background: none !important;
  margin-right: 20px;
}

/* Estilo do dropdown */
.select2-container--default .select2-dropdown {
  background: #ffffff !important;
  border: 1px solid #ccc !important;
  border-radius: 8px 8px 8px 8px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 4px;
}

/* Itens da lista (options) - 12px com cantos arredondados */
.select2-container--default .select2-results__option {
  padding: 8px 12px !important;
  color: #333 !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  border-radius: 10px !important;
  margin: 2px 4px !important;
}

/* Hover / seleção */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #f0f0f0 !important;
  color: #333 !important;
  font-size: 12px !important;
  border-radius: 10px !important;
}

/* Estilo para selects nativos (apenas options com 12px) */
select option {
  font-size: 12px !important;
}

/* Estilo para selects nativos (mantém tamanho original) */
select {
  font-size: 16px !important;
}
  