.client-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 2px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.client-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.client-suggestions li {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.client-suggestions li:last-child {
    border-bottom: none;
}

.client-suggestions li:hover {
    background-color: #f5f5f5;
}

.client-suggestions .no-results {
    padding: 10px 15px;
    color: #666;
}

.client-suggestions .no-results a {
    color: #337ab7;
    text-decoration: none;
}

.client-suggestions .no-results a:hover {
    text-decoration: underline;
}