/* Voor Webflow Dropdowns in formulieren */ .custom-dropdown-arrow { -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 0.7rem center; background-size: 1em; padding-right: 2rem; /* Zorgt voor ruimte voor de pijl */ } /* Optioneel: Pas de kleur en grootte aan */ .custom-dropdown-arrow option { color: #333; /* Tekstkleur van de opties */ } /* Voor de focus-toestand */ .custom-dropdown-arrow:focus { outline: none; border-color: #4353ff; /* Voorbeeld: blauwe rand bij focus */ }