* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
   
    color: #000;
    padding: 2px;
    font-size: 10px;
    line-height: 1.4;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 1px solid #ccc;
}

.header {
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #e6e6e6;
}

h1 {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 5px;
}

.company {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.content {
    padding: 10px;
}

.unified-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.unified-table th {


    padding: 2px;
    text-align: left;
    border: 1px solid #ccc;
    font-size: 10px;
}

.unified-table td {
    padding: 2px;
    border: 1px solid #ccc;
}

.unified-table .label {
    background-color: #f5f5f5;
    font-weight: 600;
    width: 100px;
    color: #555;
    text-align:right;
}

.score-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    border: 1px solid #ccc;
}

.score-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    padding: 2px;
    text-align: center;
    border: 1px solid #ccc;
}

.score-table .section-title {
    text-align: left;
        background-color: white;
}

.score-table td {
    padding: 2px;
    text-align: center;
    border: 1px solid #ccc;
}

.result {
    font-weight: 600;
    margin: 15px 0;
    font-size: 15px;
}

.footer {
    
    text-align: center;
    padding: 15px;
    font-size: 12px;
    border-top: 1px solid #e6e6e6;
}

.student-photo {
    width: 120px;
    height: 140px;
    padding: 0px;
    margin:auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.student-photo img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.photo-cell {
    vertical-align: top;
    width: 140px;
}

.section-title {
    font-weight: 600;
    margin: 15px 0 10px;
    text-align: left;
}
   
