/* Search Dropdown Styles */
#searchResultsDropdown {
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

#searchResultsDropdown.visible {
    display: block;
    animation: fadeInDown 0.2s ease-out;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(188, 19, 254, 0.1);
    transform: translateX(4px);
}

.search-result-item img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-view-all {
    text-align: center;
    padding: 12px;
    background: rgba(188, 19, 254, 0.1);
    color: var(--accent);
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.search-view-all:hover {
    background: var(--accent);
    color: white;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}