/* ─── Estilos del listado ───────────────────────────────────────── */
.esbwp-user-search-results {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    border-radius: 10px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    background: #fff;
}
.esbwp-user-search-results li {
    padding: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background-color 0.2s ease;
}
.esbwp-user-search-results li:hover {
    background-color: #f5f5f5;
}
.esbwp-user-search-results mark {
    background-color: #ff0;
    font-weight: bold;
}
.esbwp-user-search-results .user-name {
    font-weight: bold;
    margin-bottom: 4px;
}
.esbwp-user-search-results .user-meta {
    font-size: 0.9em;
    color: #666;
}

/* ─── Después (cópialo en su lugar) ───────────────────────────────── */
.esbwp-spinner {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top-color: #333;
    border-radius: 50%;
    animation: esbwp-spin 0.8s linear infinite;
    z-index: 10;
}



/* ─── Wrapper y overlay ─────────────────────────────────────────── */
.esbwp-input-wrapper {
    position: relative;
}
#esbwp-results-wrapper {
    position: relative;
    margin-top: 4px;
}
#esbwp-results-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.6);
    pointer-events: auto;
    z-index: 1001;
    display: none;
}
