/* Search functionality styles */

/* Search results dropdown animations */
.search-results-dropdown {
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness for search */
@media (max-width: 768px) {
    .search-results-dropdown {
        left: 10px;
        right: 10px;
        max-height: 300px;
    }
    
    form.d-flex input[type="search"] {
        width: 200px !important;
    }
}

/* Highlight search terms in results */
.search-highlight {
    background-color: #ffeaa7;
    font-weight: bold;
    padding: 0 2px;
}

/* Loading state for search */
.search-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.search-loading .spinner-border {
    width: 2rem;
    height: 2rem;
}