/* search-autocomplete.css */

.header-search {
    position: relative;
}

.search-autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: -1px;
    border-radius: 0 0 8px 8px;
}

.search-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-result-item {
    border-bottom: 1px solid #f0f0f0;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.search-result-link:hover {
    background-color: #f8f8f8;
    color: #333;
}

.search-result-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
}

[dir="rtl"] .search-result-img {
    margin-right: 0;
    margin-left: 12px;
}

.search-result-name {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

/* Loading state */
.search-autocomplete-results.loading::before {
    content: '';
    display: block;
    padding: 20px;
    text-align: center;
    color: #999;
}

/* Empty state */
.search-autocomplete-results:empty {
    display: none;
}

/* Scrollbar styling */
.search-autocomplete-results::-webkit-scrollbar {
    width: 6px;
}

.search-autocomplete-results::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search-autocomplete-results::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.search-autocomplete-results::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .search-autocomplete-results {
        max-height: 300px;
    }
    
    .search-result-img {
        width: 40px;
        height: 40px;
    }
    
    .search-result-name {
        font-size: 13px;
    }
}

