/* Search Overlay Styles */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #ff0000 #2d2d2d;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #2d2d2d;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #cc0000;
}

.search-result-card {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-result-card:hover {
    border-color: #ff0000;
    background: rgba(17, 24, 39, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15);
}

.search-result-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background: rgba(255, 0, 0, 0.1);
}

.search-result-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    color: #ff0000;
    font-size: 1.5rem;
}

/* Search Animation */
@keyframes searchPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.search-pulse {
    animation: searchPulse 2s infinite ease-in-out;
}

/* Fade in animation for overlay */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}