#yith-review-search-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    background: #f8f9fc;
    border: 1px solid #dce0e4;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
}

#yith-review-search-container:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#yith-review-search-input {
    flex: 1 1 200px;
    padding: 8px 12px;
    font-size: 14px;
    color: #2d3748;
    background-color: white;
    border: 1px solid #dce0e4;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#yith-review-search-input:focus {
    border-color: #2b6cb0;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.2);
    transform: scale(1.01);
}

/* Optional: Override browser autofill background */
#yith-review-search-input:-webkit-autofill {
    box-shadow: inset 0 0 0px 9999px white;
    -webkit-text-fill-color: #2d3748;
}

#yith-review-search-btn,
#yith-review-clear-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 80px;
}

#yith-review-search-btn {
    background-color: #2b6cb0;
    color: white;
}

#yith-review-search-btn:hover,
#yith-review-search-btn:focus {
    background-color: #1a4ea2;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(43, 108, 176, 0.2);
}

#yith-review-search-btn:active {
    transform: translateY(0);
}

#yith-review-clear-btn {
    background-color: #6c757d;
    color: white;
}

#yith-review-clear-btn:hover,
#yith-review-clear-btn:focus {
    background-color: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(108, 117, 125, 0.2);
}

#yith-review-clear-btn:active {
    transform: translateY(0);
}

#yith-review-search-status {
    flex-basis: 100%;
    font-size: 13px;
    color: #5e6268;
    margin-top: 8px;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	text-align: center;
    opacity: 0.9;
}

#yith-review-search-status small {
    display: block;
}

/* Loading dots animation */
.loading-dots {
    display: inline-block;
    animation: pulse-dots 1.5s infinite;
}

@keyframes pulse-dots {
    0%, 60%, 100% { content: "•••"; }
    20% { content: "••"; }
    40% { content: "•"; }
}

@media (max-width: 480px) {
    #yith-review-search-container {
        flex-direction: column;
        align-items: stretch;
    }

    #yith-review-search-input,
    #yith-review-search-btn,
    #yith-review-clear-btn {
        flex: none;
    }
}