/* General Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

/* Sticky Header Styling */
th {
  position: sticky; /* Make the header sticky */
  top: 0; /* Stick the header to the top */
  background-color: #f4f4f4; /* Light gray background for the header */
  z-index: 1; /* Ensure the header stays above the table rows */
}
