/* Container */
.kvk-company-search {
    position: relative;
    width: 100%;
}

/* Simpel input field */
.kvk-company-search input {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #111;
    width: 100%;
    box-sizing: border-box;
}

.kvk-company-search input:focus {
    outline: none;
    border-color: #4fb799;
}

/* Dropdown */
.kvk-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 */
}

/* Dropdown item */
.kvk-dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    background: white;
    transition: background 0.2s ease;
}

.kvk-dropdown-item:hover {
    background: #f9fafb; /* bg-gray-50 */
}

.kvk-dropdown-item.highlighted {
    color: white;
}

.kvk-dropdown-item:last-child {
    border-bottom: none;
}

/* Bedrijfsnaam */
.kvk-dropdown-item .company-name {
    font-weight: 600;
    font-size: 15px;
    color: #111;
    margin-bottom: 4px;
}

/* Bedrijfsdetails */
.kvk-dropdown-item .company-details {
    color: #555;
    font-size: 13px;
    line-height: 1.4;
}

/* Geen resultaten */
.kvk-no-results {
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
}
