/**
 * BuddyPress Hashtags Autocomplete Styles
 */

.bpht-suggestions {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 300px;
    min-width: 200px;
    max-height: 200px;
    margin-top: 10px;
    overflow-y: auto;
    z-index: 9999;
}

.bpht-suggestions-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bpht-suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.bpht-suggestion-item:last-child {
    border-bottom: none;
}

.bpht-suggestion-item:hover,
.bpht-suggestion-item.selected {
    background-color: #f5f5f5;
}

.bpht-hashtag-name {
    font-weight: 500;
    color: #0073aa;
    font-size: 14px;
}


.bpht-loading {
    padding: 12px;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Mobile responsive */
@media screen and (max-width: 600px) {
    .bpht-suggestions {
        max-width: calc(100% - 20px);
        left: 10px !important;
    }
}

/* Dark theme support (if needed) */
body.dark-theme .bpht-suggestions {
    background: #333;
    border-color: #555;
    color: #fff;
}

body.dark-theme .bpht-suggestion-item {
    border-bottom-color: #444;
}

body.dark-theme .bpht-suggestion-item:hover,
body.dark-theme .bpht-suggestion-item.selected {
    background-color: #444;
}

body.dark-theme .bpht-hashtag-name {
    color: #4db8ff;
}

