/* Force Uniform Font */
* {
    font-family: '標楷體', 'DFKai-sb', Arial, sans-serif !important;
}

/* Global Reset & Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: "標楷體", "DFKai-sb", Arial, sans-serif;
    color: black; /* Default text color as seen in many pages */
    line-height: 1.6;
}

/* Background configs since almost all pages use background images */
body.bg-main {
    background-image: url('../images/main_bg2.jpg');
    background-attachment: fixed;
}

body.bg-index {
    background-image: url('../images/index_bg2.jpg');
    background-attachment: fixed;
}

/* Uniform Headings */
h1.page-title,
h2.section-title,
h3.sub-title {
    font-family: "標楷體", "DFKai-sb", Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 20px;
}

h2.section-title {
    font-size: 18pt; /* Approx 14pt-18pt in old files */
    color: #CC3399; /* Section heading color from main.html */
}

/* Uniform Text Paragraphs */
p.content-text,
div.content-text {
    font-size: 16pt; /* Roughly matching <font size="4"> and 15pt */
    color: black;
    font-family: "標楷體", "DFKai-sb", Arial, sans-serif;
    margin: 10px 0;
}

/* Table Text */
table.content-table td {
    padding: 8px;
    font-size: 16pt;
    font-family: "標楷體", "DFKai-sb", Arial, sans-serif;
    color: black;
}

/* Menu Links */
a.menu-link {
    font-family: "DFKai-sb", Arial, sans-serif;
    font-size: 16pt;
    color: blue;
    text-decoration: none;
    /* font-weight: bold; */
}
a.menu-link:hover {
    color: #A50021;
}

/* Clean up MsoNormal default margin */
p.MsoNormal {
    margin: 0;
}

/* Global Layout Container */
.container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Helper Classes */
.indent-text {
    margin-left: 20px !important;
}

.hyper-link {
    color: blue !important;
    text-decoration: underline !important;
    font-weight: bold !important;
}

ul.date-list,
ul.content-list {
    list-style-type: disc;
}

ul.date-list li,
ul.content-list li {
    font-size: 16pt;
    color: black;
    margin-bottom: 10px;
}

ul.date-list li {
    font-weight: bold;
}

.highlight-date {
    color: black;
}

.link-style {
    color: blue;
    text-decoration: underline;
}

/* Page Specific Blocks (Centralized) */
table.topic-table {
    max-width: 837px;
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

table.topic-table td {
    width: 25%;
    padding: 5px;
    vertical-align: top;
    font-size: 16pt;
    color: black;
}

.back-to-top {
    text-align: right;
    margin-top: 40px;
}

.back-to-top a {
    color: blue;
    text-decoration: none;
    font-size: 12pt;
    font-family: Arial, sans-serif;
}
/* Info Grid Layout (for Contact/Org information) */
.info-grid {
    margin-top: 20px;
}

.info-row {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(204, 51, 153, 0.1); /* Subtle divider in section color */
    padding-bottom: 15px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    min-width: 100px;
    font-weight: bold;
    color: blue; /* Using the vibrant section color */
    font-size: 14pt;
    padding-right: 0px;
}

.info-value {
    font-size: 14pt;
    color: black;
    line-height: 1.8;
}
/* PDF Embedding Container */
.pdf-container {
    width: 100%;
    height: 1000px;
    margin-top: 0px;
    border: 1px solid #ccc;
}

/* Full Screen PDF container for edge-to-edge viewing */
.pdf-container-full {
    width: 100%;
    height: 100vh;
    border: none;
    margin: 0;
    padding: 0;
    display: block;
}
