/* Popular Searches List Styling */
.sep-suggestions-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sep-suggestions-list li {
    margin: 0 !important;
    padding: 0 !important;
}

.sep-suggestion-link {
    display: block;
    padding: 12px 16px;
    background: #f8f9fa;
    color: #0073aa;
    text-decoration: none;
    border-radius: 6px;
    border-left: 3px solid #FFB400;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.sep-suggestion-link:hover {
    background: #FFB400;
    color: #000;
    border-left-color: #FF8C00;
    transform: translateX(5px);
    text-decoration: none;
}

.sep-suggestion-link::before {
    content: "\f179";
    font-family: dashicons;
    margin-right: 10px;
    color: #FFB400;
    font-size: 16px;
}

.sep-suggestion-link:hover::before {
    color: #000;
}

/* Sources styling - uses same style as suggestions */
.sep-answer-sources {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.sep-answer-sources .sep-suggestions-title {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.sep-answer-sources .sep-suggestions-list {
    gap: 6px;
}

.sep-answer-sources .sep-suggestion-link {
    padding: 10px 14px;
    font-size: 13px;
    background: #f0f6fc;
    border-left-color: #0073aa;
}

.sep-answer-sources .sep-suggestion-link:hover {
    background: #0073aa;
    color: #fff;
}

.sep-answer-sources .sep-suggestion-link::before {
    content: "\f504";
    color: #0073aa;
}

.sep-answer-sources .sep-suggestion-link:hover::before {
    color: #fff;
}

/* Hide old button styles if any exist */
.sep-suggestion-chip {
    display: none !important;
}
