/* ============================================================================
   TRANG CHÍNH SÁCH & ĐIỀU KHOẢN — style tài liệu điều khoản.
   Dùng chung cho panel/term.ejs (đã đăng nhập) và panel/term_public.ejs (khách).
   Toàn bộ bọc trong .term-doc để không đè lên CSS của panel.
   Nội dung do admin soạn (h1..h4, p, ul/ol, .warning/.info/.note, table.legal).
   ============================================================================ */
.term-page { max-width: none; }

.term-doc {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}
.term-doc h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #004080;
}
/* Mobile + tablet: tách tiêu đề thành 2 dòng, ẩn dấu gạch nối. Phải bao đến 991px vì
   ở 768-991px tiêu đề đầy đủ vẫn tự wrap, làm dấu gạch rơi lại cuối dòng 1.
   clamp() giữ dòng 1 ("ĐIỀU KHOẢN & CHÍNH SÁCH") không bị wrap trên màn <=360px. */
@media (max-width: 991.98px) {
    .term-doc h1 { font-size: clamp(17px, 5.2vw, 24px); }
    .term-doc h1 .t-sep { display: none; }
    .term-doc h1 .t-domain { display: block; }
}
.term-doc h2 {
    font-size: 22px;
    margin-top: 40px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}
.term-doc h3 {
    margin-top: 25px;
    color: #333;
}
.term-doc ul { margin-left: 20px; }
.term-doc ol { margin-left: 20px; }
.term-doc .note {
    color: #b30000;
    font-weight: bold;
}
.term-doc .warning {
    background-color: #fff4f4;
    border-left: 4px solid #cc0000;
    padding: 10px 15px;
    margin: 15px 0;
    color: #990000;
}
.term-doc .section { margin-bottom: 40px; }
.term-doc .meta {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}
/* URL dài trong mục liên hệ không tự ngắt -> tràn ngang ở màn <=320px. */
.term-doc a { overflow-wrap: anywhere; }
.term-doc .terms-note {
    text-align: center;
    color: #555;
    font-size: 15px;
    margin-bottom: 30px;
}
.term-doc .info {
    background-color: #f4f9f4;
    border-left: 4px solid #2e7d32;
    padding: 10px 15px;
    margin: 15px 0;
    color: #1b5e20;
}
.term-doc table.legal {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
}
.term-doc table.legal th, .term-doc table.legal td {
    border: 1px solid #ddd;
    padding: 8px 10px;
    text-align: left;
    vertical-align: top;
}
.term-doc table.legal th { background-color: #f0f4f8; }

/* Bảng dài (căn cứ pháp lý) không co được trên mobile -> cho cuộn ngang thay vì tràn trang. */
@media (max-width: 575.98px) {
    .term-doc table.legal { display: block; overflow-x: auto; white-space: normal; }
}

/* ---- Dark mode (chỉ có ở panel; trang công khai luôn nền sáng) ---- */
body.dark_mode .term-doc { color: #b6bdcc; }
body.dark_mode .term-doc h1 { color: #7aa7ff; }
body.dark_mode .term-doc h2 { color: #e2e8f0; border-bottom-color: rgba(255,255,255,.14); }
body.dark_mode .term-doc h3,
body.dark_mode .term-doc h4 { color: #e2e8f0; }
body.dark_mode .term-doc b,
body.dark_mode .term-doc strong { color: #edf1f7; }
body.dark_mode .term-doc .meta,
body.dark_mode .term-doc .terms-note { color: #99a2b5; }
body.dark_mode .term-doc .note { color: #ff8f8f; }
body.dark_mode .term-doc .warning {
    background-color: rgba(204, 0, 0, .12);
    border-left-color: #e35b5b;
    color: #ffb3b3;
}
body.dark_mode .term-doc .info {
    background-color: rgba(46, 125, 50, .14);
    border-left-color: #5aae60;
    color: #b6e3ba;
}
body.dark_mode .term-doc a { color: #8ab4ff; }
body.dark_mode .term-doc table.legal th,
body.dark_mode .term-doc table.legal td { border-color: rgba(255,255,255,.14); }
body.dark_mode .term-doc table.legal th { background-color: rgba(255,255,255,.06); color: #e2e8f0; }
