.gf-company-search {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}
.gf-company-search input {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}
.gf-company-search input:focus {
    outline: none;
    border-color: #4fb799;
}

/* Verbeterde dropdown styling */
.gf-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 4px 0 0 0; /* Reset margin */
    padding: 0; /* Reset padding */
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    z-index: 9999;
    max-height: 300px;
    overflow-y: auto;
    font-family: sans-serif;
    list-style: none; /* Verwijder bullet points */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtiele schaduw */
}

.gf-autocomplete-dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0; /* Subtiele scheiding tussen items */
}

.gf-autocomplete-dropdown-item:last-child {
    border-bottom: none; /* Geen border bij laatste item */
}

.gf-autocomplete-dropdown-item:hover {
    background-color: #f0f0f0;
}

.gf-autocomplete-dropdown-item:first-child {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.gf-autocomplete-dropdown-item:last-child {
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}