/* Dark ChatGPT Theme - Responsive Table */

html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        table {
            table-layout: fixed;
            width: 100vw;
            height: 100vh;
            border-collapse: collapse;
        }

td:hover {
    background-color: #2a2a2a;   /* Slight highlight on hover */
}

.active-cell {
    outline: 3px solid #00bfff;  /* Bright cyan highlight */
    filter: brightness(1.2) contrast(1.1);
}

a {

font-size: 6vw;

    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: inherit;               /* Keeps the light text */
}
