/* ECA Search autocomplete dropdown. Scoped to .eca-search-* */
.eca-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 15px;
    z-index: 1050;
    background: #fff;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 0.25rem 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    max-height: 320px;
    overflow-y: auto;
}

.eca-search-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    text-decoration: none;
    color: #212529;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.eca-search-item:hover,
.eca-search-item.eca-search-item-active {
    background: #f8f9fa;
}

.eca-search-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
}

.eca-search-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.eca-search-all {
    display: block;
    padding: 10px 12px;
    text-align: center;
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
    border-top: 1px solid #dee2e6;
}

.eca-search-all:hover {
    background: #f8f9fa;
    color: #0056b3;
}
