/* Container */
#gbp-kiezer-container {
    position: relative;
    max-width: 500px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin-bottom: 1em;
}

/* Invoerveld */
#gbp-search-input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 16px;
}

/* Resultaten container */
#gbp-results-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

#gbp-results-container>div {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

/* Individueel resultaat item */
.gbp-profile-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.gbp-profile-item:hover {
    background-color: #f0f0f0;
}

/* Details (naam en adres) */
.gbp-profile-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.gbp-profile-name {
    font-weight: bold;
    color: #222;
}

/* Adres en rating */
.gbp-profile-address {
    font-size: 14px;
    color: #555;
    margin-top: 2px;
}

.gbp-profile-rating {
    display: inline-block;
    margin-left: 8px;
    color: #FBBC05;
    /* Google Geel */
    font-weight: bold;
}

/* Statusberichten */
.gbp-loading,
.gbp-no-results,
.gbp-error {
    color: #666;
    font-style: italic;
    padding: 10px;
}

.gbp-error {
    color: #d63638;
}