*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Times New Roman", serif;
    background:#fff;
}

.container{
    width:100%;
    margin:20px auto;
}

.header-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:bold;
    font-size:18px;
    margin-bottom:10px;
    padding:0 20px;
}

.title{
    text-align:center;
    color:#c00000;
    font-weight:bold;
    margin-bottom:10px;
}

table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

th,
td{
    border:1px solid #000;
    text-align:center;
    vertical-align:middle;
    padding:6px;
    font-size:12px;
}

th{
    background:#f2f2f2;
    font-weight:bold;
}

.yellow{
    background:yellow;
    font-weight:bold;
}

tr{
    height:90px;
}