/* FAQ_US.css - 美股FAQ頁面樣式 */

.search-results-info {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
}

.search-summary {
    color: #495057;
    font-size: 14px;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-size: 16px;
}

.highlight {
    background-color: #fff3cd;
    border-radius: 3px;
    padding: 2px 4px;
    font-weight: bold;
    color: #856404;
}

.clear-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
}

.clear-search:hover {
    background: #c82333;
}

.input-wrap.search {
    position: relative;
}

/* 搜尋結果列表樣式 */
.search-results-list {
    margin-top: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #e9ecef;
}

.search-result-item:last-child {
    border-bottom: none;
}

.result-tab-badge {
    background-color: #007bff;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    margin-right: 8px;
}

.result-question {
    color: #495057;
    font-size: 13px;
}

/* 高亮項目動畫 */
.highlight-item {
    background-color: #fff3cd !important;
    border: 2px solid #ffc107 !important;
    border-radius: 5px !important;
    transition: all 0.3s ease;
}

/* 搜尋模式下的樣式調整 */
.search-mode .tab-content {
    display: block !important;
}

.search-mode .qa-item {
    border-left: 3px solid transparent;
}

.search-mode .qa-item.show {
    border-left-color: #007bff;
}