/*****************************************************************************************
  作者：张太红
  日期：2026年08月27日
  功能：农作物病虫害诊断智能体样式
*****************************************************************************************/

.pda {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem 0 3rem;
    text-align: center;
}

.pda-hidden {
    display: none !important;
}

/* 顶部标志 */
.pda-logo {
    max-width: 160px;
    height: auto;
}

/* 标题 */
.pda-title {
    margin-top: 1rem;
    font-weight: 600;
}

/* 市、州、地区选择 + 图像上传 */
.pda-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
}

.pda-region {
    width: auto;
    min-width: 14rem;
}

.pda-upload {
    margin-bottom: 0;
}

/* 上传的图像 */
.pda-preview {
    margin-top: 1.5rem;
}

.pda-preview img {
    max-width: 100%;
    max-height: 420px;
    border-radius: .5rem;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .15);
}

/* 诊断结果 */
.pda-result {
    margin-top: 1.5rem;
    text-align: left;
}

.pda-spinner {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #6c757d;
    margin-bottom: .75rem;
}

.pda-markdown {
    line-height: 1.8;
    word-wrap: break-word;
}

.pda-markdown h1,
.pda-markdown h2,
.pda-markdown h3,
.pda-markdown h4 {
    margin-top: 1.25rem;
    font-weight: 600;
}

.pda-markdown table {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
    /* 表格较宽时允许在结果区内横向滚动 */
    display: block;
    overflow-x: auto;
}

.pda-markdown th,
.pda-markdown td {
    padding: .5rem .75rem;
    border: 1px solid #dee2e6;
    vertical-align: top;
}

.pda-markdown th {
    background-color: #f1f5f2;
    white-space: nowrap;
}

.pda-markdown code {
    padding: .1rem .25rem;
    background-color: #f6f8fa;
    border-radius: .2rem;
}

/* 智能体运行信息 */
.pda-usage {
    margin-top: 2rem;
}

.pda-usage-table {
    max-width: 32rem;
}

.pda-usage-table th {
    background-color: #f1f5f2;
}

.pda-disclaimer {
    margin-top: .75rem;
    color: #6c757d;
    font-size: .875rem;
}
