@font-face {
    font-family: "fangzheng";
    src: url("../font/fangzheng.ttf");
    font-weight: normal;
    font-style: normal;
}

:root {
    --font-main: "fangzheng", "Noto Serif SC", "Times New Roman", serif;
    --color-text-primary: #5a2f0d;
    --color-text-secondary: #7a5a30;
    --color-text-body: #3b2a16;
    --color-highlight: #cfa15b;
    --color-border: #e0d5c3;
    --color-bg-header: linear-gradient(180deg, #fdf3e7, #fbe7cd);
    --color-bg-row-odd: #ffffff;
    --color-bg-row-even: #fffdf8;
    --color-link: #d35400;
    --color-link-hover: #a84300;
}


/* 🗂️ Bảng download */
.MyTable {
    width: 100%;
    border-collapse: collapse;
    margin: 24px auto;
    font-family: var(--font-main);
    font-size: 15px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.MyTable th {
    background: var(--color-bg-header);
    color: var(--color-text-primary);
    font-weight: bold;
    text-align: center;
    font-family: var(--font-main);
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--color-border);
}

.MyTable td {
    padding: 12px;
    border: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-body);
}

.MyTable tr:nth-child(odd) {
    background: var(--color-bg-row-odd);
}

.MyTable tr:nth-child(even) {
    background: var(--color-bg-row-even);
}

/* 🔗 Link tải */
.MyTable a {
    color: var(--color-link);
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}

.MyTable a:hover {
    color: var(--color-link-hover);
    text-decoration: underline;
}

/* 📋 Phần yêu cầu hệ thống */
.text_cont p {
    font-size: 15px;
    color: var(--color-text-body);
    font-family: var(--font-main);
    margin: 10px 0;
}

.text_cont strong {
    color: var(--color-text-primary);
    font-family: var(--font-main);
}

/* 📊 Bảng cấu hình */
.MyTable caption,
.MyTable th[colspan="2"] {
    font-size: 17px;
    font-weight: bold;
    color: var(--color-text-primary);
    text-align: center;
}

.MyTable td:first-child {
    font-weight: 600;
    color: var(--color-text-secondary);
    font-family: var(--font-main);
    width: 30%;
    text-align: center;
}

.MyTable td:last-child {
    text-align: left;
    padding-left: 16px;
    font-family: var(--font-main);
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .text_cont {
        padding: 16px;
        font-size: 14px;
    }

    .MyTable {
        font-size: 14px;
    }

    .MyTable th,
    .MyTable td {
        padding: 10px;
    }

    .MyTable caption,
    .MyTable th[colspan="2"] {
        font-size: 16px;
    }
}
