 .custom-select-container {
     width: 100%;
     position: relative;
 }

 /* Campo de busca com estilo Bootstrap */
 .custom-select-container input.form-control {
     width: 100%;
     border-radius: 0.375rem;
     padding: 0.375rem 0.75rem;
     font-size: 1rem;
     line-height: 1.5;
     border: 1px solid #ced4da;
 }

 .custom-select-container input.form-control {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
     background-repeat: no-repeat;
     background-position: right 0.75rem center;
     background-size: 16px 12px;
     padding-right: 2rem;
     /* espaço para a seta */
     cursor: pointer;
 }

 /* Container das opções */
 .options-container {
     position: absolute;
     top: 100%;
     left: 0;
     width: 100%;
     max-height: 200px;
     overflow-y: auto;
     border: 1px solid #dee2e6;
     border-radius: 0.375rem;
     background-color: #fff;
     box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
     display: none;
     z-index: 1050;
     margin-top: 0.25rem;
 }

 /* Cada opção */
 .option {
     padding: 0.5rem 1rem;
     cursor: pointer;
     font-size: 1rem;
     line-height: 1.5;
     color: #212529;
     user-select: none;
     transition: background-color 0.15s ease-in-out;
 }


 /* Hover igual ao dropdown-item */
 .option:hover {
     background-color: #f8f9fa;
 }

 /* Para indicar seleção (opcional) */
 .option.active {
     background-color: #e9ecef;
 }