/* Contenedor general */
.kpswpcodex-search-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 22px auto;
}

/* Formulario */
.kpswpcodex-search-form {
    position: relative;
    width: 100%;
    max-width: 430px;
}

/* Input del buscador */
.kpswpcodex-search-input {
    width: 100%;
    padding: 14px 52px 14px 20px;
    font-size: 16px;
    border-radius: 40px;
    border: none;
    outline: none;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    font-family: inherit;
    letter-spacing: 0.5px;
    color: #333;
    transition: box-shadow .2s ease;
}

.kpswpcodex-search-input::placeholder {
    color: #444;
    opacity: 0.6;
}

/* Hover/focus */
.kpswpcodex-search-input:focus {
    box-shadow: 0 4px 22px rgba(0,0,0,0.12);
}

/* Botón de envío */
.kpswpcodex-search-button {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 26px;
    height: 26px;
}

/* Icono SVG de lupa */
.kpswpcodex-search-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;

    /* SVG en línea para máxima nitidez */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.7' y1='16.7' x2='21' y2='21'/%3E%3C/svg%3E");
}
