/* --- 法定公開揭露事項頁面樣式 --- */
.public-container {
    width: 100%;
    margin: 0 auto;
    font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

.page-title {
    font-size: 2em;
    color: #c2242d;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

/* --- 頁籤導覽 --- */
.disclosure-tabs ul {
    list-style: none;
    padding: 0;
    margin: 0 0 -1px 0; /* -1px to overlap the panel's top border */
    display: flex;
    flex-wrap: wrap;
}
.disclosure-tabs a {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
    margin-bottom: -1px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}
.disclosure-tabs a.active {
    background-color: #fff;
    color: #c2242d;
    border-bottom: 1px solid #fff;
}

/* --- 頁籤面板 --- */
.disclosure-panels .disclosure-panel {
    display: none;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 0 8px 8px 8px;
    background-color: #fff;
}
.disclosure-panels .disclosure-panel.active {
    display: block;
}
.disclosure-panel h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}
.disclosure-panel p, .disclosure-panel li {
    line-height: 1.8;
}

/* --- 文件列表樣式 --- */
.document-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.document-list-group h3 {
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}
.document-list-group:first-child h3 {
    margin-top: 0;
}
.document-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.document-item:last-child {
    border-bottom: none;
}
.item-icon {
    font-size: 1.2em;
    margin-right: 10px;
}
.item-title {
    flex-grow: 1;
}
.item-link {
    display: inline-block;
    padding: 5px 15px;
    background-color: #c2242d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
}

/* --- PDF 下載提示 --- */
.pdf-reader-notice {
    margin-top: 30px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9em;
}
.pdf-reader-notice p {
    margin: 0 0 10px 0;
}
.pdf-reader-notice a {
    color: #005a9c;
}

/* RWD */
@media (max-width: 768px) {
    .page-title { font-size: 1.6em; }
    .disclosure-tabs a { padding: 10px 15px; font-size: 0.9em; }
    .disclosure-panel h2 { font-size: 1.3em; }
}