.aem-serp-search-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

#aem-serp-search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 16px;
    width: 100%;
}

.aem-serp-search-container button {
    padding: 12px 20px;
    background-color: var(--wp--preset--color--primary, #00499F); /* Uses WP link color */
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    font-size: 16px;
}

.aem-serp-search-container button:hover {
    background-color: var(--wp--preset--color--primary-hover, #003366);
}
.aem-serp-search-results-item {
    margin-bottom: 1rem;
}
.aem-serp-search-results img {
    height: auto;
    max-width: 75px;
}

.aem-serp-search-results-item h5 {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.2;
}
.aem-serp-search-results-item-description {
    line-height: normal;
    margin-bottom: 0;
    color: #555;
    font-size: 0.875rem;
}

/* ✅ Pagination */
.aem-serp-search-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.aem-serp-search-pagination a {
    text-decoration: none;
    padding: 8px 12px;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.aem-serp-search-pagination a:hover {
    background-color: #0056b3;
}