table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* Ensure table doesn't get too narrow */
  }
  th, td {
    padding: 16px 20px; /* More padding for better readability */
    text-align: left;
    border-bottom: 1px solid #e2e8f0; /* Light border for rows */
  }
  th {
    background-color: #edf2f7; /* Light grey for headers */
    font-weight: 600; /* Slightly bolder headers */
    color: #2d3748; /* Darker text for headers */
    position: sticky; /* Sticky headers for scrolling */
    top: 0;
    z-index: 10; /* Ensure headers are above content when scrolling */
  }
  tr:last-child td {
    border-bottom: none; /* No border for the last row */
  }
  tr:hover {
    background-color: #f7fafc; /* Subtle hover effect */
  }