.jvf-cpt-search {
    margin-bottom: 20px;
}

.jvf-cpt-search-input {
    padding: 8px 12px;
    width: 250px;
    max-width: 100%;
}

.jvf-cpt-search-btn {
    padding: 8px 14px;
    margin-left: 6px;
}

.jvf-loading {
    opacity: 0.4;
    pointer-events: none;
}
/* Container */
.jvf-cpt-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px auto;
    padding: 8px 12px;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Input */
.jvf-cpt-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 8px 12px;
    background: transparent;
}

/* Button */
.jvf-cpt-search-btn {
    background: #0073e6;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s ease, transform 0.1s ease;
}

/* Hover + Active */
.jvf-cpt-search-btn:hover {
    background: #005bb5;
}

.jvf-cpt-search-btn:active {
    transform: scale(0.96);
}

/* Mobile */
@media (max-width: 480px) {
    .jvf-cpt-search-box {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
    }

    .jvf-cpt-search-btn {
        width: 100%;
        text-align: center;
    }
}