/* Table styling to remove alternating row colors and hover effect */
table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

table tr, table td, table th {
    padding: 5px; /* Compact padding for cells */
}

table tr:hover {
    background-color: none; /* Remove hover effect */
}

/* Set input field width */
input[type="number"] {
    width: 80px;
}

tr:nth-child(even) {
    background-color: #e7e7e7;
}

tr:nth-child(odd) {
    background-color: #ffffff;
}


table {
    width: 100%;
    border-collapse: collapse;
}

/* Center-align the header row */
th {
    text-align: center;
    padding: 8px;
}

/* Left-align the first column (evaluator names) */
td:first-child {
    text-align: left;
}


/* Right-align all other cells */
td {
    text-align: right;
    padding: 8px;
}

/* Add a thicker border between the second and third column */
td:nth-child(2), th:nth-child(2) {
    border-right: 3px solid; /* Adjust color and thickness as needed */
}

/* Optional: Set a minimum width for each column for readability */
th, td {
    min-width: 80px; /* Adjust this value as needed */
}