.score-cell {
    width: 100px;          /* same width for every column */
    text-align: center;    /* centers the text inside the cell */
}

.score-header, .score-value {
    color: #6a6461;
    border: 2px inset;
    width: 75px;
    text-align: center;
    font-weight: bold;
    font-family: serif;
    font-size: 14px;
    box-sizing: border-box;
}

/* Specific styles for header and value backgrounds/borders */
.score-header {
    background-color: #eee1c4;
    border-color: #dbcfb1;
}

.score-value {
    background-color: #dbcfb1;
    border-color: #c3b797;
    margin-top: 4px;  /* small gap below header */
}
