/* Start custom CSS */#gv-field-5-7 td {
    font-size: 0; /* Hide text by setting font size to 0 */
    color: transparent; /* Make text transparent as an extra measure */
    border: none; /* Remove any borders that may visually indicate the presence of the cell */
    padding: 0; /* Remove padding to reduce the cell's physical space */
    margin: 0; /* Ensure no external spacing affects layout */
}

#gv-field-5-7 th {
    width: 100%; /* Encourage the browser to allocate as much width to the first column */
}


/* Hide the <td> when its parent <tr> has the class 'label-left' */
tr.label-left td {
    display: none;
}

/* Attempt to extend the <th> element to take up 90% of the table width */
tr.label-left th {
    width: 90%;
}/* End custom CSS */