/**
 * SKIN_CSS.CSS - PHIÊN BẢN PHỤC HỒI & TỐI ƯU TỐI THIỂU
 * GIỮ NGUYÊN 100% BỐ CỤC FLOAT VÀ ĐỊNH VỊ GỐC
 * Ngày: 12/07/2025
 */

:root {
    --color-text-light: #d9e3ff;
    --color-primary-hover: #00DEB7;
    --color-button-grad-start: #97d247;
    --color-button-grad-end: #588022;
    --color-button-grad-hover: #8dc73f;
}

body {
    margin: 0;
    padding: 0;
    font-family: tahoma;
    background-color: #D2D2D2; /* Màu nền dự phòng */

    /* --- Cấu hình cho ảnh nền --- */
    background-image: url("../images/background.png");
    background-repeat: no-repeat;
    background-position: center top; /* Căn ảnh ra giữa hoàn toàn */
    background-attachment: fixed;     /* Giữ ảnh nền đứng yên khi cuộn trang */
    background-size: auto;           /* QUAN TRỌNG: Phủ kín màn hình */
}
a, a:hover, a:active {
    text-decoration: none;
}

/* --- Menu Top (GIỮ NGUYÊN BỐ CỤC FLOAT) --- */
.MenuTop {
    height: 52px;
    width: 933px;
    margin: 0 auto;
}
.MenuSubLeft {
    width: 363px;
    height: 100px;
    float: left;
}
.MenuSubRight {
    float: right;
    width: 363px;
    height: 100px;
}
.MenuSubChild {
    height: 72px;
    width: 93px;
    float: left;
}
.MenuSubChieldIcon {
    height: 35px;
    width: 48px;
    float: left;
    margin-left: 24px;
    transition: transform 1s linear 0.05s;
}
.MenuSubChild:hover .MenuSubChieldIcon {
    transform: rotateY(360deg);
}
.MenuSubChieldText {
    font-size: 15px;
    color: var(--color-text-light);
    text-transform: uppercase;
    float: left;
    text-decoration: none;
    margin-left: 9px;
}
.MenuSubChildSubMenu {
    visibility: hidden;
}
.MenuSubChild:hover .MenuSubChildSubMenu {
    visibility: visible;
    width: 200px;
    background: rgba(0, 0, 0, 0.37);
    margin-top: 19px;
    float: left;
    z-index: 100; /* Thêm z-index để đảm bảo menu con nổi lên trên */
}
.MenuSubChildSubMenuChild {
    background: url('../images/icon_menu_child.png') 0px 13.5px no-repeat;
    padding-left: 15px;
    font-family: tahoma bold, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: var(--color-text-light);
    line-height: 3;
    margin-left: 8px;
    border-bottom: thin solid #4ad0e7;
    width: 168px;
    float: left;
    text-decoration: none;
    transition: color 0.3s ease, background-image 0.3s ease;
}
.MenuSubChildSubMenuChild:hover {
    background-image: url('../images/icon_menu_child_hover.png');
    color: var(--color-primary-hover);
}
.LogoMenuTop {
    float: left;
    height: 191px;
    width: 138px;
    background: url('../images/logo_menu_top.png') no-repeat;
    margin-left: 29px;
    position: relative;
}
.LogoMenuTop:after {
    position: absolute;
    content: '';
    top:0; left:0; width:100%; height:100%;
    background: inherit;
    animation: cirZoom infinite linear 2s .5s;
}

@keyframes cirZoom {
    0% { opacity: 1; transform: scale(1,1); }
    70% { opacity: 0; transform: scale(1.2,1.2); }
    100% { opacity: 0; }
}

/* --- Khung Đăng nhập & Tải Game (GIỮ NGUYÊN BỐ CỤC) --- */
.LoginDownloadGame {
    margin: 0 auto;
    width: 1024px;
    height: 415px;
}
.ButtonDownLoadGame {
    background: url("../images/tai_game.png") no-repeat;
    width: 315px;
    height: 150px;
    float: left;
}
.ButtonDownLoadGame:hover span {
    display: block;
    width: 315px;
    height: 150px;
    background: inherit;
    animation: cirZoom infinite linear .8s;
}
.LoginRegister {
    float: left;
    width: 315px;
    height: 264px;
    background: url("../images/login_register.png") no-repeat;
}

/* Tối ưu các nút Đăng ký & Nạp thẻ */
.ButtonRegister, .ButtonToupCard {
    width: 144px;
    height: 40px;
    margin-top: 8px;
    cursor: pointer;
    transition: background-image 0.2s;
}
.ButtonRegister {
    background: url("../images/icon_dangky.png") no-repeat;
    float: left;
    margin-left: 9px;
}
.ButtonRegister:hover {
    background-image: url("../images/icon_dangky_hover.png");
}
.ButtonToupCard {
    background: url("../images/icon_napthe.png") no-repeat;
    float: right;
    margin-top: 8px;
}
.ButtonToupCard:hover {
    background-image: url("../images/icon_napthe_hover.png");
}

.FormLogin {
    float: left;
    width: 315px;
    margin-bottom: 0;
    border-top: thin solid #4ad0e7;
}

.InputUserName {
    border-radius: 4px;
    margin-top: 3px;
    width: 216px;
    border: none;
    height: 20px;
    background: #191919;
    color: #ccc;
    padding: 4px;
    outline: 0;
}
.ButtonLogin {
    border: 0;
    cursor: pointer;
    float: left;
    background: linear-gradient(to bottom, var(--color-button-grad-start) 0%, var(--color-button-grad-end) 100%);
    color: #fff;
    border-radius: 2px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.3);
    line-height: 28px;
    text-align: center;
    text-decoration: none;
    width: 253px;
    outline: none;
    transition: background 0.3s ease;
}
.ButtonLogin:hover {
    background: linear-gradient(to bottom, var(--color-button-grad-start) 0%, var(--color-button-grad-hover) 100%);
}
.btnLogOutAjaxFormIndex:hover {
    color:red;
}
.LineForgetPass {
    line-height: 30px;
    color: #d7b35b;
    font-size: 12px;
    margin-left: 71px;
    text-decoration: none;
}
.LineForgetPass:hover {
    text-decoration: underline;
}

/* --- Nội dung bên phải (GIỮ NGUYÊN) --- */
.boxAccordin {
    width: 695px;
    height: 412px;
    margin: 0 auto 0 14px;
    overflow: hidden;
    float: left;
}
.boxAccordin ul {
    overflow: hidden;
    width: 695px;
    height: 258px;
    padding: 116px 0 0;
    margin:0;
}
.boxAccordin ul li {
    display: inline;
    float: left;
    font-size: 16px;
}
.boxAccordin span {
    width: 20px;
    height: 208px;
    line-height: 140%;
    padding: 50px 26px 0 27px;
    display: inline;
    font-family: "Microsoft Yahei";
    float: left;
    cursor: pointer;
    word-break: normal;
    text-align: center;
    word-wrap: break-word;
    background: url(../images/num.gif) no-repeat;
    color: #fdf2d6;
    overflow: hidden;
}
.boxAccordin a {
    float: left;
}
.boxAccordin ul li img {
    display: none;
    width: 476px;
    height: 258px;
}
.boxAccordin .current {
    color:#fdf2d6;
    background:url(../images/numOn.gif) no-repeat;
}

.ContentBody{margin: 0 auto;width: 1024px;height: 1038px;margin-top: 10px;}
.LeftBody{float: left;width: 315px;height: 1038px;}
.RightBody{float: left;height: 1038px;width: 695px;margin-left: 14px;}

.newsbox{width:695px;height:215px;overflow:hidden;background:#FBF9FA;}
.checknav{ width:666px; height:57px; margin:0 auto; display:block; position:relative; background:#FBF9FA; border-bottom:#d0d0d0 3px solid;}
.checknav ul{ width:100%;  height:100%; display: block;}
.checknav ul li{ width:78px; float:left; display:inline;}
.checknav ul li a{ height:57px; line-height:57px; display:block; text-align:center; color:#1c3662; background:url(../images/line_boxnews.gif) no-repeat right 0;text-decoration: none;font-size: 14px;font-family: 'UTM AptimaBold';text-transform: uppercase;font-weight: bold;}
.checknav ul li a.curr{ color:#ad8732;}
.checkcon{ padding:20px; position:relative;}
.checkcon a.more{ width:96px; height:22px; line-height:22px; display:block; position:absolute; right:22px; top:-50px; overflow:hidden; color:#5c5c5c;text-decoration: none;font-family: tahoma bold, sans-serif;font-size: 14px;}
.checkcon a.more:hover{ color:#ad8732;}
.newsbox .clr{ margin:0; border-bottom:dotted 1px #d0c7c0;}
.indextop{ height:32px; line-height:32px; overflow:hidden;}
.newsbox .checkcon{ width:678px; margin:10px 0 0 17px; padding:0; display:inline-block;_display:inline; float:left;}
.checkcon h3{ display:block; text-align:left; line-height:32px;}
.checkcon h3 a,.checkcon h3 a span{ color:#93752c; font-size:14px; font-weight:bold;}
.checkcon .text{ line-height:22px; border-bottom:#e3e2e2 1px dashed; height:55px;}
.checkcon .text span{ color:#d94644}
.checkcon .text a{ color:#666666}
.checkcon .text a:hover span{color:#d94644; text-decoration:underline}
.checkcon ul{ width:659px; margin:0 auto 0; _margin:6px auto 0; overflow:hidden; display:inline-block; font-family: tahoma bold, sans-serif;font-size: 15px;padding: 0;}
.checkcon ul li{ width:666px; float:left; display:inline; height:32px; line-height:32px; overflow:hidden;}
.checkcon ul li span{ float:right; padding-right:10px; color:#5c5c5c;}
.checkcon ul li a{ width:500px;height:32px; line-height:32px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden; display:block; color:#1c3662;text-decoration: none;}
.checkcon ul li a:hover{text-decoration:none; color:#93752c;}
.newsbox .checknav ul{ width:580px; display: inline;padding: 0;float: left;margin: 0;}
.checknav .gz{ display:block; background:#ad8732; height:3px; overflow:hidden; position:absolute; left:0; top:57px; transition: left 0.3s ease-in-out, width 0.3s ease-in-out;}

.role{ background:url(../images/roleBg.jpg) no-repeat 0 0; width:695px; height:267px; margin-top:8px; overflow:hidden; position:relative;}
.role .rNav{width: 311px;height:57px;position:relative;z-index:11;border-bottom:#d0d0d0 3px solid;margin-left: 14px;}
.role .rNav ul{ width:auto; height:57px;float: left;padding: 0;margin: 0;}
.role .rNav ul li{ float:left;list-style: none;}
.role .rNav ul li a{width: 62px;height:57px;line-height:57px;display:block;font-size:14px;text-align:center;font-family:'UTM AptimaBold';color:#1c3662;text-decoration: none;}
.role .rNav ul li a:hover,.role .rNav .cur a{ color:#93752c;}
.role .gz{display:block;background:#ad8732;height: 3px;overflow:hidden;position:absolute;left:0;top: 57px;}
.peo{ width:395px; height:267px; overflow:hidden; position:absolute; right:0; top:0; z-index:1;}
.comPeo{ width:395px; height:267px; position:absolute; right:0; top:0;}
.comPeo img{width: 395px;height: 267px;}
.hide{ display:none;}
.rTxt{ width:285px; height:180px; position:absolute; top:70px; left:30px; z-index:11;}
.rTxt h3{ color:#212428; font-weight:bold; text-align:left; font-size:12px;margin: 0;}
.rTxt p{ color:#618C27; text-indent:2em;margin: 0;font-size: 15px;text-align: justify;}
.ABoxRoles{color:#680069;}

#gotop{ background:url(../images/top.gif) no-repeat; width:33px; height:35px; text-indent:-99999px; overflow:hidden; z-index:9999; cursor:pointer; position:fixed; top: 70%; right: 16px; _position:absolute;_bottom:auto;_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight/2-this.offsetHeight/2));}
#gotop:hover{ background-position:0 -35px;}

.fix-right_{position: fixed;right: 10px;z-index: 999;text-align: right;top: 25%;}
.fix-right_ ul li {display: block;text-align: right;margin-bottom: 10px;}
.fix-right_ ul li{display: block;cursor: pointer;position: relative;}
.fix-right_ ul li span{position: absolute;top:5px;right:20px;bottom: 0;display: block;color: white;padding: 10px 30px 10px 15px;border-radius: 20px;height: 35px;line-height: 12px;white-space: nowrap;-webkit-transform: scaleX(0);transform: scaleX(0);-webkit-transform-origin: 100% 50%;transform-origin: 100% 50%;-webkit-transition-property: transform;transition-property: transform;-webkit-transition-duration: 0.3s;transition-duration: 0.3s;-webkit-transition-timing-function: ease-out;transition-timing-function: ease-out;box-sizing: border-box;}
.fix-right_ ul li:hover span{-webkit-transform: scaleX(1);transform: scaleX(1);}
.fix-right_ ul li span.green{ background-color: #72b304;}
.fix-right_ ul li span.purple{ background-color: #7c2cc0;}
.fix-right_ ul li span.orange{ background-color: #d75d03;}
.fix-right_ ul li span.yellow{ background-color: #fbc439;}
.fix-right_ ul li span.blue{ background-color: #4167b7;}
.fix-right_ ul li a img{-moz-transition: all 0.4s ease;-o-transition: all 0.4s ease;-ms-transition: all 0.4s ease;transition: all 0.4s ease;display: block;position: relative;width: 45px;height: auto;}
.fix-right_ ul li a img:hover{-ms-transform: rotate(360deg);-webkit-transform: rotate(360deg);-moz-transform: rotate(360deg);transform: rotate(360deg);}

.Support{float: left;width: 100%;height: 200px;background-color: #FBF9FA;background-image: url("../images/custom.png");}
.Support .t{float: left;width: 258px;height: 60px;background: url("../images/hotro.png") no-repeat;padding-left: 43px;margin-left: 14px;}
.Support .b{float: left;width: 168px;height: 140px;margin-left: 147px;}
.Support .b a{float: left;width: 153px;font-size: 12px;line-height: 25px;}
.Support .b .ReqS{text-align: center;background: linear-gradient(to bottom, #FFD700 0%,#9E8300 100%);border-radius: 2px;font-weight: bold;margin-top: 10px;color: #000;}
.Support .b .ReqS:hover{cursor: pointer;background: linear-gradient(to bottom, #97d247 0%,#8dc73f 100%);}
.GiftCode{float: left;width: 315px;height: 80px;margin-top: 8px;background: url("../images/giftcode.png") no-repeat;}
.GiftCode:hover{background: url("../images/giftcode_hover.png") no-repeat;}
.BoiCanh{float: left;width: 315px;height: 223px;background: #FBF9FA;margin-top: 8px;}
.BoiCanh .t{float: left;background: url("../images/boicanh.png") no-repeat;width: 262px;height: 61px;margin-left: 14px;padding-left: 39px;}
.BoiCanh .b{float: left;width: 283px;font-size: 12px;color: #1C3662;margin: 9px 0 0 14px;line-height: 18px;}
.HuongDanTanThu{float: left;width: 315px;height: 126px;background: url("../images/huongdantanthu.png") no-repeat;margin-top: 8px;}
.HuongDanTanThu:hover{background: url("../images/huongdantanthu_hover.png") no-repeat;}
.CamNangDocHanh{float: left;width: 315px;height: 126px;background: url("../images/camnangdochanh.png") no-repeat;margin-top: 8px;}
.CamNangDocHanh:hover{background: url("../images/camnangdochanh_hover.png") no-repeat;}
.BoxFanpage{float: left;width: 315px;height: 243px;margin-top: 8px;background: #E5ECF4;}

.tinh-nang {width: 695px;height: 231px;float: left;margin-top: 8px;background: #E5ECF4;}
.ziliao {width: 100%;height: 230px;background: #FBF9FA;overflow: hidden;}
.zl {position: relative;float: left;overflow: hidden;width: 134px;height: 230px;margin-right: 1px;-webkit-transition: width 400ms ease;transition: width 400ms ease;}
.zl img{vertical-align: middle;border: 0;}
.zl img:hover .zl-con{width: 337px;border: 0;}
.zl a{background-color: transparent;text-decoration: none;outline: 0;}
.zl a, .zl a:hover, .zl a:active {text-decoration: none;}
.zl a:active, .zl a:hover {outline: 0;text-decoration: none;}
.ziliao .show {overflow: hidden;width: 288px;border: 0;}
.zl-more {position: absolute;left: 0;top: 0;*top: 3px;width: 138px;display: block;height: 100%;}
.overTit01, .overTit02, .overTit03, .overTit04 {display: inline-block;width: 540px;height: 230px;background: url(../images/bg-nv-tintucnr.jpg) no-repeat 0 0;position: absolute;left: 0;top: 0;}
.overTit02 {background-position: -135px 0;}
.overTit03 {background-position: -270px 0;}
.overTit04 {background-position: -405px 0;}
.show .overTit01, .show .overTit02, .show .overTit03, .show .overTit04 {display: none;}
.zl-con {overflow: hidden;width: 154px;height: 230px;margin: -233px 0px 0px 135px;}
.zl-con h3 {font-weight: bold;font-size: 15px;color: #1c3662;font-family: 'UTM AptimaBold';text-transform: uppercase;width: 154px;margin: 9px 0px 0px 0px;border-bottom: solid 1px #bbc7d2;text-align: center;padding-bottom: 2px}
ul.noi-dungnv {margin-top: 26px;padding: 0;margin: 16px 0 0 0;}
ul.noi-dungnv li {display: block;margin: 0px 0px 0px 4px;line-height: 36px;}
ul.noi-dungnv li:last-child, ul.noi-dungnv li:nth-child(2), ul.noi-dungnv li:nth-child(4), ul.noi-dungnv li:nth-child(6) {margin-right: 0;}
ul.noi-dungnv li i {background: url(../images/icon-nhanvat.png) no-repeat;width: 7px;height: 7px;display: inline-block;}
ul.noi-dungnv li span {font-size: 13px;color: #354061;margin-left: 2px;font-family: tahoma;}

.LichHoatDong{float: left;width: 695px;height: 301px;background: #FBF9FA;margin-top: 8px;}
.LichHoatDong .t{float: left;width: 100%;height: 37px;border-bottom: #d0d0d0 3px solid;}
.LichHoatDong .t .c{color: #93752c;float: left;width: 131px;height: 37px;border-bottom: #93752c 3px solid;text-align: center;margin-left: 14px;font-size: 14px;font-family: 'UTM AptimaBold';font-weight: bold;line-height: 39px;padding: 0 4px 0 8px;}
.LichHoatDong .b{float: left;width: 681px;height: 247px;padding: 0 0 0 14px;margin-top: 1px;}
.LichHoatDong .b .bt{float: left;width: 95px;height: 100%;background: rgba(212, 222, 196, 0.12);margin-right: 1px;}
.LichHoatDong .b .bt .bc{text-align: center;line-height: 26px;height: 26px;font-size: 15px;font-family: 'UTM AptimaBold';color: #1c3662;font-weight: bold;border-bottom: #d0d0d0 1px solid;}
.LichHoatDong .b .bt .bco{text-align: center;line-height: 21px;height: 26px;font-size: 12px;color: #1c3662;}

.Footer{background: url("../images/footer.png") no-repeat;height: 511px;margin-top: -266px;}
.Footer .b{margin: 0 auto;width: 779px;height: 182px;padding-left: 34px;padding-top: 329px;}
.Footer .b img{height: 133px;margin-top: 25px;float: left;}
.Footer .b .l{float: left;height: 161px;width: 1px;margin-left: 21px;margin-top: 12px;background: #666879;}
.Footer .b .c{float: left;color: #E5ECF4;font-size: 12px;margin-top: 23px;}
.MenuFooter{width: 1024px;margin: 0 auto;height: 41px;padding-top: 8px;}
.MenuFooter .a{width: 100%;height: 41px;background: #FFFFFF;}
.MenuFooter .a a{float: left;width: 73px;height: 16px;text-align: center;font-size: 12px;margin-top: 14px;color: #292B45;}
.MenuFooter .a a:hover{color:#AD8732; cursor: pointer;}

.ContentBody .News{float: left;width: 695px;height: 763px;background: #FBF9FA;margin-bottom: 8px;}
.ContentBody .News .C {display: flex; flex-wrap: wrap; width: 100%; border-bottom: 1px solid #e0e0e0; margin: 0; box-sizing: border-box; padding: 0 12px;}
.ContentBody .News .C a {text-decoration: none; font-family: 'UTM AptimaBold'; font-weight: bold; color: #1c3662; padding: 0 15px; height: 56px; text-align: center; line-height: 61px; font-size: 14px; white-space: nowrap; border-bottom: 3px solid transparent; transition: all 0.2s ease-in-out;}
.ContentBody .News .C a:hover, .ContentBody .News .C a[style*="border-bottom"] {color: #ad8732; border-bottom: 3px solid #93752c;}
.ContentBody .News .Content{float: left;width: 617px;height: 627px;margin: 14px 39px 0;}
.ContentBody .News .Content div{font-size: 15px;height: 39px;line-height: 36px;}
.ContentBody .News .Content div a{color: #1c3662;}
.ContentBody .News .Content div a:hover{color: #AD8732;}
.ContentBody .News .Content div p{margin: 0;float: right;color: #1c3662;}
.ContentBody .News .Pages{float: left;width: 537px;height: 26px;margin: 12px 79px;text-align: center;}
.ContentBody .News .Pages a{width: 30px;height: 24px;line-height: 24px;text-align: center;display: inline-block;color: #706e6f;margin: 0 3px;vertical-align: middle;background-color: #f3f3f3;border: 1px solid #e3e3e3;font-size: 12px;}
.ContentBody .News .Pages a:hover{background-color: #d6b63d;color: #fff;font-weight: normal;border: 1px solid #d6b63d;}
.ContentBody .News .Pages b{background-color: #d6b63d;color: #fff;font-weight: normal;border: 1px solid #d6b63d;width: 30px;height: 24px;line-height: 24px;text-align: center;display: inline-block;margin: 0 3px;vertical-align: middle;font-size: 12px;}

.ContentBody .ContentChild{float: left;width: 695px;background: url("../images/background_content.png") no-repeat #FBF9FA;}
.ContentBody .ContentChild .C{float: left;width: 671px;height: 56px;border-bottom: #E9E8E4 3px solid;margin: 0 12px;}
.ContentBody .ContentChild .C a{text-transform: uppercase;text-decoration: none;font-family: 'UTM AptimaBold';font-weight: bold;float: left;height: 56px;line-height: 61px;font-size: 18px;padding: 0 14px;}
.ContentBody .ContentChild .C a:hover{color: #ad8732;border-bottom: #93752c 3px solid;}

.GetAwardGiftCode{text-align: center;background: linear-gradient(to bottom, #FFD700 0%,#9E8300 100%);border-radius: 2px;font-weight: bold;margin-top: 10px;color: #000;display: block;width: 200px;height: 25px;line-height: 24px;}
.GetAwardGiftCode:hover{cursor: pointer;background: linear-gradient(to bottom, #97d247 0%,#8dc73f 100%);}

/* --- [MỚI] CSS CHO POPUP THÔNG TIN TÀI KHOẢN (Bản Hoàn Chỉnh Cuối Cùng) --- */

.popup-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.49);z-index:999;display:flex;align-items:center;justify-content:center;padding:20px;box-sizing:border-box}
.popup-container{width:920px;max-width:100%;background:#fff;border-radius:8px;box-shadow:0 5px 25px rgba(0,0,0,.3);display:flex;flex-direction:column;overflow:hidden}
.popup-header{width:100%;background:#f6f6f6;display:flex;align-items:center;padding:15px 20px;box-sizing:border-box;border-bottom:3px solid #2FB135}
.popup-header .logo{width:160px;flex-shrink:0;text-align:center}
.popup-header .user-info{flex-grow:1;padding-left:20px;font-family:arial,sans-serif;font-size:14px}
.popup-header .user-info-main{font-family:'UTM AptimaBold',sans-serif;font-weight:bold;color:#006C9A;font-size:18px;margin-bottom:10px}
.popup-header .user-stats{display:flex;align-items:center;gap:20px}
.popup-header .logout-btn{cursor:pointer;background:#ECECEC;padding:5px 10px;border-radius:3px;font-size:12px;color:#FF0000}
.popup-header .logout-btn img{vertical-align:middle;margin-left:5px}
.popup-body{display:flex;width:100%}
.popup-left-menu{width:180px;flex-shrink:0;background:#F6F6F6;padding:10px 0;border-right:1px solid #e4e4e4}
.popup-left-menu a{display:block;padding:10px 15px;font-family:tahoma,sans-serif;font-size:13px;color:#333;text-decoration:none;cursor:pointer;border-left:3px solid transparent;transition:all .2s ease}
.popup-left-menu a:hover{background:#e9e9e9;border-left-color:#f0ad4e}
.popup-left-menu a.active{background:#006C9A;color:#fff;border-left-color:#2FB135}
.popup-main-content{flex-grow:1;padding:15px;max-height:450px;overflow-y:auto}
.popup-close-btn{position:absolute;top:15px;right:15px;cursor:pointer;width:24px}

/* --- CSS CHO TAB TỔNG QUAN (Bố cục 2 cột) --- */
.dashboard-grid { display: flex; gap: 15px; }
.dashboard-col { display: flex; flex-direction: column; gap: 15px; }
.dashboard-col-left { flex: 0 0 55%; }
.dashboard-col-right { flex: 1; }
.action-button{display:block;width:92%;padding:12px;text-align:center;font-size:14px;font-weight:bold;color:#fff;background:linear-gradient(to bottom, #23D264 0%,#15823D 100%);border-radius:4px;text-decoration:none;cursor:pointer;transition:all .2s ease}
.action-button:hover{background:linear-gradient(to bottom, #28e26e 0%,#1a9c49 100%)}
.action-button.secondary{background:linear-gradient(to bottom, #f0ad4e 0%,#eea236 100%)}
.action-button.secondary:hover{background:linear-gradient(to bottom, #f3b964 0%,#f0a546 100%)}

/* --- CSS CHUNG CHO CÁC KHUNG NỘI DUNG --- */
.info-box{border:1px solid #e4e4e4;width:100%;box-sizing:border-box;background:#fff;margin-bottom:15px}
.info-box:last-child{margin-bottom:0}
.info-box-header{text-align:center;padding:8px 0;background:#EEEEEE;font-family:tahoma,sans-serif;font-size:12px;font-weight:bold}
.info-box-content{padding:8px 12px;font-size:13px}
.status-list{list-style:none;padding:0;margin:0}
.status-list li{display:flex;justify-content:space-between;padding:6px 0;font-size:13px;border-bottom:1px dotted #eee}
.status-list li:last-child{border-bottom:none}
.status-list li .label{color:#4493b5}
.status-list li .value{font-weight:bold}
.tab-content-box, .history-table{border:1px solid #e4e4e4;width:100%;box-sizing:border-box;font-size:12px}
.tab-content-header{text-align:center;padding:8px 0;background:#EEEEEE;font-family:tahoma,sans-serif;font-size:12px;font-weight:bold;border-bottom:1px solid #e4e4e4}
.info-row{display:flex;align-items:center;padding:8px 15px;border-top:1px solid #f0f0f0;font-size:13px}
.info-row:first-of-type{border-top:none}
.info-label{flex:0 0 200px;color:#4493b5}
.info-value{flex-grow:1;color:#333}
.info-action{margin-left:auto;border:0;font-size:12px;background-color:#1EB453;color:#fff;border-radius:3px;cursor:pointer;padding:2px 10px;outline:none}
.history-row{display:flex;width:100%;border-top:1px solid #f0f0f0;line-height:2;color:#333}
.history-header{background:#EEEEEE;color:#333;font-weight:bold;border-bottom: 1px solid #e4e4e4;}
.history-col{padding:4px 8px;text-align:center;box-sizing:border-box}
.history-col.col-seri{color:#4493b5;word-break:break-all}