/* 佛學研究資料庫 — 自訂樣式 */

:root {
    --brand: #5c6b3c;
    --badge-video: #1976d2;
    --badge-book: #7b1fa2;
    --badge-enews: #388e3c;
    --badge-other: #757575;
}

header h1 {
    margin-bottom: 0.25rem;
}

#stats-line {
    color: var(--pico-muted-color);
    font-size: 0.875rem;
    margin-top: 0;
}

/* 搜尋表單 */
#search-form {
    margin-bottom: 1.5rem;
}

#filter-section {
    margin-top: 0.5rem;
}

/* 結果卡片 */
.result-card {
    border-bottom: 1px solid var(--pico-muted-border-color);
    padding: 0.75rem 0;
}

.result-card:last-child {
    border-bottom: none;
}

.result-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand);
    cursor: pointer;
    text-decoration: none;
}

.result-title:hover {
    text-decoration: underline;
}

.result-meta {
    font-size: 0.8rem;
    color: var(--pico-muted-color);
    margin: 0.25rem 0;
}

.result-snippet {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.25rem 0;
}

.result-snippet mark {
    background: #fff3cd;
    padding: 0 2px;
    border-radius: 2px;
}

/* Badge */
.badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    color: white;
    margin-right: 0.25rem;
}

.badge-video { background: var(--badge-video); }
.badge-book { background: var(--badge-book); }
.badge-enews { background: var(--badge-enews); }
.badge-other { background: var(--badge-other); }
.badge-lecture { background: #ef6c00; }
.badge-sutra { background: #c62828; }

/* Tags */
.tag-chip {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.1rem 0.5rem;
    border: 1px solid var(--pico-muted-border-color);
    border-radius: 12px;
    margin: 0.1rem 0.15rem;
    color: var(--pico-muted-color);
}

/* 分頁 */
#pagination {
    text-align: center;
    margin: 1.5rem 0;
}

#pagination button {
    display: inline-block;
    margin: 0 0.25rem;
    min-width: 2.5rem;
}

#pagination button.current {
    font-weight: bold;
}

/* 結果摘要 */
.results-summary {
    font-size: 0.85rem;
    color: var(--pico-muted-color);
    margin-bottom: 0.5rem;
}

/* 文件檢視 */
#doc-view header {
    margin-bottom: 1rem;
}

#back-link {
    font-size: 0.9rem;
}

#doc-meta {
    font-size: 0.85rem;
    color: var(--pico-muted-color);
    margin: 0.5rem 0;
}

#doc-tags {
    margin: 0.5rem 0;
}

#doc-content {
    white-space: pre-wrap;
    line-height: 1.8;
    font-size: 1rem;
}

/* 載入狀態 */
.loading {
    text-align: center;
    padding: 2rem;
    color: var(--pico-muted-color);
}

/* 響應式 */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    #search-form .grid {
        grid-template-columns: 1fr;
    }

    #filter-section .grid {
        grid-template-columns: 1fr;
    }
}
