I have a question regarding the datalist style. I got a code that removes the little arrow that is in the input (default in the Chrome browser). But now I can't find a way to style the suggestion box with CSS. I'm using Angular 15
HTML
<input type="text" class="form-control" role="search" list="impostoBox" id="impostoInp" style="position: relative;" name="impostoBox" aria label="Selecione o Imposto" tabindex="0" placeholder="Selecionar ou Digitar" [(ngModel)]="impostoValue" (change)="seleImp($event)">
<span for="impostoInp" class="material-symbols-outlined iconSelect525" aria-hidden="true">expand_more</span>
<datalist id="impostoBox">
<option *ngFor="let i of opImposto" [value]="i.name">{{i.name}</option>
</datalist>
SCSS
[list]::-webkit-calendar-picker-indicator {
opacity: 0;
}
I have code that removes the arrow but I cannot style the suggestion box in the form.