
/* Styles for Envato-style autocomplete */
.ui-autocomplete {
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
}
.autocomplete-header {
    padding: 8px 16px;
    font-weight: 600;
    font-size: 13px;
    background: #f3f4f6;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}
.autocomplete-item {
    list-style: none;
    margin: 0;
    padding: 0;
}
.autocomplete-card {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.autocomplete-card:hover {
    background: #f9fafb;
}
.autocomplete-thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f3f4f6;
}
.autocomplete-details {
    flex: 1;
    overflow: hidden;
}
.autocomplete-title {
    font-weight: 600;
    font-size: 14px;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.autocomplete-meta {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.autocomplete-tags {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}