/* 使用 Noto Sans TC 作為中文字體, Inter 作為英文字體 */
body {
    font-family: 'Inter', 'Noto Sans TC', sans-serif;
}
/* 彈窗背景 */
#model-modal-backdrop {
    transition: opacity 0.3s ease-in-out;
}
/* 彈窗內容 */
#model-modal-content {
    transition: all 0.3s ease-in-out;
    transform: translateY(20px) scale(0.95);
}
/* 彈窗顯示時的動畫 */
#model-modal-backdrop:not(.hidden) #model-modal-content {
    transform: translateY(0) scale(1);
}
/* 筆記區的 pre-wrap 讓換行可以被 PDF 捕捉 */
.note-print-div {
    white-space: pre-wrap;
    word-break: break-word;
    min-height: 40px; /* 避免空內容時版面塌陷 */
}
/* 策略報告模式下, 卡片選中的樣式 */
#model-grid article.selected {
    border-color: #6366f1; /* indigo-500 */
    box-shadow: 0 0 0 2px #a5b4fc; /* ring-2 ring-indigo-300 */
}
/* (*** 新增 ***) 確保下拉選單按鈕在禁用時有清晰樣式 */
.dropdown-trigger-btn:disabled {
    background-color: #f3f4f6; /* gray-100 */
    color: #9ca3af; /* gray-400 */
    cursor: not-allowed;
}