/* public/css/autosuggest.css */
#suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
}
.suggestion-item {
    padding: 0.5rem 1rem;
    cursor: pointer;
}
.suggestion-item:hover, .suggestion-item.active {
    background-color: #f8f9fa;
}
.member-name {
    font-weight: 500;
}
.member-account {
    font-size: 0.875rem;
    color: #6c757d;
}
.member-email {
    font-size: 0.75rem;
    color: #6c757d;
}

/*more styles*/


    #suggestions-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1050;
        max-height: 300px;
        overflow-y: auto;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
    .suggestion-item {
        padding: 0.75rem 1rem;
        cursor: pointer;
        border-bottom: 1px solid #eee;
        transition: background-color 0.2s;
    }
    .suggestion-item:hover, .suggestion-item.active {
        background-color: #f8f9fa;
    }
    .suggestion-item:last-child {
        border-bottom: none;
    }
    .member-name {
        font-weight: 600;
        color: #333;
        margin-bottom: 0.25rem;
    }
    .member-account {
        font-size: 0.85rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    .member-financials .badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    .member-loan-info {
        font-size: 0.8rem;
        color: #dc3545;
        margin-top: 0.25rem;
    }
