*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI",Arial,sans-serif;
}


body{
    background:#eef6ff;
    color:#164e75;
}



.container{
    width:100%;
    padding:30px 35px;
}



/* HEADER */

.header{

    background:linear-gradient(90deg,#075985,#0284c7);

    color:white;

    padding:35px 40px;

    border-radius:15px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}



.header h1{

    font-size:30px;

    font-weight:800;

}



.header p{

    margin-top:10px;

    font-size:15px;

}



.home{

    background:white;

    color:#075985;

    padding:14px 25px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

}





/* TÌM KIẾM */

.search-box{

    background:white;

    padding:20px;

    border-radius:15px;

    display:flex;

    gap:15px;

    margin-bottom:25px;

}



.search-box input{

    flex:1;

    height:45px;

    border:1px solid #cbd5e1;

    border-radius:8px;

    padding:0 15px;

    font-size:15px;

}



.search-box button{

    width:140px;

    border:none;

    background:#075985;

    color:white;

    border-radius:8px;

    font-weight:700;

}






/* BẢNG */

.table-box{

    background:white;

    border-radius:15px;

    overflow:hidden;

}



table{

    width:100%;

    border-collapse:collapse;

}



thead{

    background:#075985;

    color:white;

}



th{

    padding:16px 10px;

    text-align:center;

    font-weight:700;

}



td{

    padding:18px 12px;

    height:75px;

    text-align:center;

    vertical-align:middle;

    border-bottom:1px solid #dbeafe;

}



tbody tr:nth-child(even){

    background:#f3f8ff;

}



tbody tr:hover{

    background:#dbeafe;

}



.text{

    text-align:left;

    line-height:1.5;

}






/* PDF */

.pdf{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#dc2626;

    color:white;

    padding:8px 22px;

    border-radius:7px;

    text-decoration:none;

    font-weight:700;

}



.pdf:hover{

    background:#b91c1c;

}





/* XEM */

.view{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#2563eb;

    color:white;

    padding:8px 22px;

    border-radius:7px;

    text-decoration:none;

    font-weight:700;

}



.view:hover{

    background:#1d4ed8;

}






/* FOOTER */

.footer{

    margin-top:40px;

    height:55px;

    background:#075985;

    color:white;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

}





/* CĂN GIỮA */

.table-box td{

    vertical-align:middle !important;

}



/* ĐỘ RỘNG CỘT */

th:nth-child(1),
td:nth-child(1){

    width:60px;

}



th:nth-child(2),
td:nth-child(2){

    width:30%;

}



th:nth-child(3),
td:nth-child(3){

    width:25%;

}



th:nth-child(4),
td:nth-child(4){

    width:25%;

}



th:nth-child(5),
td:nth-child(5){

    width:12%;

}



th:nth-child(6),
td:nth-child(6){

    width:10%;

}