/* Campo com erro */
.erro-campo {
  border: 2px solid red !important;
  background-color: #ffe6e6 !important;
}

/* Aparência uniforme para SELECT2 múltiplo */
.select2-container--default .select2-selection--multiple {
  height: 38px !important;
  padding: 0 8px !important;
  margin: 10px 0 5px;
  border-radius: 4px;
  max-height: 150px;
  overflow-y: hidden !important;
  background: white
    url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>")
    no-repeat right 10px center;
  background-size: 16px 16px;
  cursor: pointer;
  padding-right: 50px !important;
}

/* Aparência uniforme para SELECT2 simples */
.select2-container--default .select2-selection--single {
  height: 38px !important;
  padding: 6px 12px;
  margin: 10px 0 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: white
    url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>")
    no-repeat right 10px center;
  background-size: 16px 16px;
  cursor: pointer;
  padding-right: 40px;
  box-shadow: none;
}

/* Cor do texto nos campos e placeholders */
.select2-container--default .select2-selection__rendered {
  color: black;
  padding: 0 8px !important;
  line-height: 24px;
}

/* Campo de busca inline do múltiplo */
.select2-container--default
  .select2-selection--multiple
  .select2-search--inline {
  display: flex;
  align-items: center;
}
.select2-container--default
  .select2-selection--multiple
  .select2-search__field {
  height: 30px !important;
  line-height: 30px !important;
  padding-left: 5px !important;
  margin-top: 4px !important;
  text-transform: none !important;
  min-width: 100% !important;
}
.select2-container--default
  .select2-selection--multiple
  .select2-search__field::placeholder {
  color: black !important;
}

/* Remove botão de limpar e seta duplicada */
.select2-selection__clear,
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  display: none !important;
}

/* Dropdown do select2 */
.select2-container--default .select2-dropdown {
  margin-top: -5px;
  border-top: none;
}
.select2-dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 9999 !important;
}

/* Largura total dos select2 */
.select2-container {
  width: 100% !important;
}

/* Estilo dos SELECTS padrões para igualar */
select:not(.select2-hidden-accessible) {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 38px;
  padding: 0 30px 0 10px !important;
  margin: 10px 0 5px;
  border-radius: 4px;
  background: white
    url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>")
    no-repeat right 10px center;
  background-size: 16px 16px;
  cursor: pointer;
}
