.wpt-search-form {
    display: flex;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
}

.wpt-search-results {
    display: flex;
    justify-content: center;
    justify-items: center;
    padding: 1rem .5rem;
    height: 2rem;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
}

.wpt-search-results .wpt-found,
.wpt-search-results .wpt-not-found {
    display: none;
    font-weight: 600;
}

.wpt-not-found {
    display: none;
}

.wpt-loader {
    display: none;
    width: 32px;
    height: 32px;
    border: var(--loader-width, 4px) solid var(--loader-color-secondary, #ddd);
    border-top-color: var(--loader-color-primary, #ccc);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}