/**
 * Global Search Autocomplete Styles
 */

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-top: 8px;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

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

.search-result-item:hover {
    background: #f8f9fa;
    text-decoration: none;
}

.search-result-flag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-result-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info {
    flex: 1;
}

.search-result-country {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.search-result-currency {
    font-size: 12px;
    color: #999;
}

.search-result-arrow {
    font-size: 18px;
    color: #d4af37;
    font-weight: bold;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.search-show-all {
    padding: 12px 15px;
    text-align: center;
    border-top: 2px solid #f0f0f0;
    background: #f8f9fa;
}

.search-show-all a {
    color: #d4af37;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

.search-show-all a:hover {
    text-decoration: underline;
}

/* Mobile styles */
@media (max-width: 768px) {
    .search-results-dropdown {
        max-height: 300px;
    }
    
    .search-result-item {
        padding: 10px 12px;
    }
    
    .search-result-flag {
        width: 28px;
        height: 28px;
    }
}

