/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Dec 21 2024 | 16:45:46 */
/* Table header styling (First row) */
table tr:first-child th, table tr:first-child td {
  background-color: #FF0000 !important; /* Red color for the first row */
  color: white !important; /* White text color for the first row */
}

/* Table body styling for text color */
table tr:not(:first-child) td {
  color: #000 !important; /* Black text for all table body cells */
}

/* Optional: Alternate row background color for better readability */
table tr:nth-child(even):not(:first-child) {
  background-color: #f9f9f9 !important; /* Light gray background for even rows */
}
