/* 這裡只放 CSS 代碼 */
body { font-family: 'Noto Sans TC', sans-serif; background-color: #f8fafc; color: #334155; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
.nav-btn.active { background-color: #0f766e; color: white; border-color: #0f766e; box-shadow: 0 4px 6px -1px rgba(15, 118, 110, 0.3); }
.card-hover:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.label-badge { display: inline-block; padding: 2px 8px; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; }
.cat-medical { background-color: #fee2e2; color: #991b1b; }
.cat-it { background-color: #e0f2fe; color: #075985; }
.cat-supplies { background-color: #dcfce7; color: #166534; }
.cat-global { background-color: #f3e8ff; color: #6b21a8; }
.fade-in { animation: fadeIn 0.5s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.highlight { background-color: #fde047; color: #854d0e; padding: 0 2px; border-radius: 2px; font-weight: bold; }
.calc-input { width: 100%; padding: 0.5rem; border: 1px solid #cbd5e1; border-radius: 0.375rem; transition: all 0.2s; font-size: 0.95rem; }
.calc-input:focus { outline: none; border-color: #0f766e; ring: 2px solid #0f766e; }

/* Slide Styles */
.slide-card { background: white; border-radius: 1rem; padding: 2rem; border: 1px solid #e2e8f0; height: 100%; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.slide-card::before { content: ""; position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: #0f766e; }
.slide-number { position: absolute; top: 1rem; right: 1.5rem; font-size: 3rem; font-weight: 900; color: #f1f5f9; z-index: 0; }
.slide-content { position: relative; z-index: 10; }
.slide-title { font-size: 1.25rem; font-weight: 800; color: #0f766e; margin-bottom: 1rem; border-bottom: 2px solid #ccfbf1; padding-bottom: 0.5rem; }
.slide-body { font-size: 0.95rem; line-height: 1.6; color: #475569; }
.slide-body ul { list-style-type: disc; padding-left: 1.25rem; margin-top: 0.5rem; }
.slide-body li { margin-bottom: 0.5rem; }