
        /* Modern CSS Reset (optional, but recommended) */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: sans-serif;
            background-color: #f9f9f9;
            line-height: 1.6;
            margin: 20px;
        }

        ul {
            list-style-type: none;
            padding: 0;
        }

        a {
            color: #007bff;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .tooltip {
            position: relative;
        }

        .tooltip span {
            display: none;
            position: absolute;
            top: 100%; /* Position below the link */
            left: 0;
            background-color: #fffacc;
            color: #010101;
            padding: 5px;
            border: 1px solid #ffff00;
            border-radius: 4px;
            box-shadow: 5px 5px 5px #555;
            z-index: 10;
            max-width: 200px; /* Adjust as needed */
        }

        .tooltip:hover span {
            display: block;
        }

        table {
	    display: block:
            overflow-x: auto;
	    white-space: nowrap; /* Prevent wrapping of cells */
            border-collapse: collapse;
            margin-top: 1em;
        }

        th, td {
            padding: 0.5em;
            text-align: center;
            border: 1px solid #ccc;
        }

        th {
            background-color: #f0f0f0;
        }

        select, input[type="submit"] {
            padding: 0.5em 1em;
            border-radius: 5px;
            border: 1px solid #ccc;
            font-size: 1em;
        }

        input[type="submit"] {
            background-color: #007bff;
            color: white;
            cursor: pointer;
        }

        input[type="submit"]:hover {
            background-color: #0056b3;
        }

        .new-indicator {
            color: red; /* Or use an image, as in the original */
            font-weight: bold;
        }

        .last-updated {
            text-align: center;
            font-size: 0.8em;
            color: #888;
            margin-top: 1em;
        }

        /* Add more styling as needed */


