body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
        .container {
            width: 90%;
            max-width: 960px;
            margin: 20px auto;
            padding: 20px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            background-color: #f9f9f9;
        }
        h1 {
            color: #333;
            text-align: center;
        }
        h2 {
            color: #444;
            margin-top: 30px;
        }
        h3 {
            color: #555;
            margin-top: 20px;
        }
        p {
            color: #666;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
        }
        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 */
  }