.scry-search-autosuggest-results {
    margin-top: 2px;
    position: absolute;
    /* Match page background / text: block themes expose these on :root/body */
    background-color: var(--wp--preset--color--background, Canvas);
    color: var(--wp--preset--color--foreground, CanvasText);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.scry-search-autosuggest-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scry-search-autosuggest-result-item {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}

/* Row layout: thumb (if any) + title */
.scry-search-autosuggest-result-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

/* Fixed square so titles line up even when some rows have no image */
.scry-search-autosuggest-result-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.scry-search-autosuggest-result-title {
    flex: 1;
    min-width: 0;
}

.scry-search-autosuggest-results-close-button {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    font-size: 16px;
}