    /* Basic styling */
    pre {
        white-space: pre-wrap;
    }
    body {
        max-width: 1200px;
        margin: 1rem auto;
        padding: 0 1rem;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-size: 16px;
        line-height: 1.5;
    }
    h1 a {
        color: crimson;
    }
    h1 a:hover {
        color: rgb(190, 15, 50);
    }
    h2.similar-title {
        color: #555;
    }
    article.article-gist {
        margin-bottom: 3rem;
    }
    .article-gist .title, .article-gist .title-delta {
        font-size: 1.2rem;
        font-weight: bold;
        margin: 0;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
    }
    .article-gist .title-delta {
        color: #555;
    }
    .article-gist .body {
        background-color: #f9f9f9;
        padding: 1.5rem;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        margin-top: 0.5rem;
    }
    .article-gist .clever-points {
        color: #555;
    }
    .article-gist .clever-points li {
        margin-bottom: 0.5rem;
    }
    .article-published-at {
        color: #777;
        /* font-style: italic; */
    }
    hr {
        width: 100%;
        max-width: 400px;
        margin: 2rem auto;
        border: 0;
        border-top: 1px solid #eee;
    }
    a {
        color: #1a5276;
        text-decoration: none;
    }
    a:hover {
        color: #0ebfe9;
    }
    p.topic-bar {
        margin-bottom: 0;
    }
    p.trending-bar {
        margin-top: 0;
    }
    p.trending-bar a {
        color: #555;
    }
    p.trending-bar a:hover {
        color: crimson;
    }
    div.pagination {
        /*center in the middle*/
        text-align: center;
        margin-bottom: 5rem;
    }
    span.current-page {
        font-weight: bold;
    }
    div.footer {
        margin-top: 5rem;
        text-align: center;
        background-color: #f0f0f0;
        padding: 0.5rem;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
    }

    /* Mobile-friendly adjustments */
    @media (max-width: 600px) {
        body {
            font-size: 14px;
            margin: 0.5rem;
            padding: 0 0.5rem;
        }
        .article-gist .title, .article-gist .title-delta {
            font-size: 1rem;
        }
        .article-gist .body {
            padding: 1rem;
        }
    }
    /* Table styling */
    table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
        font-size: 1rem;
        color: #333;
    }

    table th, table td {
        padding: 0.75rem;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    table th {
        background-color: #f4f4f4;
        font-weight: bold;
    }

    table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    table tr:hover {
        background-color: #f1f1f1;
    }