table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border: 1px solid #ddd;
  padding: 6px 8px;
  text-align: center;
}

td:first-child, th:first-child {
  text-align: left;  /* Project Name column looks better left-aligned */
}

.title {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  background: #f5f5f5;
}
/* Rightmost column (Report) already done */
th:last-child, td:last-child {
  white-space: nowrap;
  width: 1%;
  padding: 2px 4px;
}

/* Second-to-last column (Portal) */
th:nth-last-child(2), td:nth-last-child(2) {
  white-space: nowrap;
  width: 1%;
  padding: 2px 4px;
}
/* SCALPED columns (2nd through 8th) */
th:nth-child(n+2):nth-child(-n+8),
td:nth-child(n+2):nth-child(-n+8) {
  white-space: nowrap;
  width: 1%;
  padding: 2px 4px;
  text-align: center;
}
/* Highlight any cell manually */
td.highlight {
  background-color: #d4edda; /* a soft green */
  color: #155724;            /* darker text for contrast */
  font-weight: bold;
}