.search-result-item {
    animation: fadeInUp 0.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-results-scroll::-webkit-scrollbar {
    width: 4px;
}

.search-results-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.search-results-scroll::-webkit-scrollbar-thumb {
    background: #fbbf24;
    border-radius: 10px;
}

.suggestion-card {
    transition: all 0.2s ease;
}

.suggestion-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* استایل‌های باکس نتایج زنده */
.live-results-box {
    max-height: 70vh;
    overflow-y: auto;
}

.result-item {
    transition: all 0.15s ease;
}

.result-item:focus {
    outline: none;
    background-color: #fef3c7;
}

.remove-history-item {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.recent-search-item:hover .remove-history-item {
    opacity: 1;
}