    h1 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .forum-posts {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .forum-post {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
        font-size: 0.8em;
    }

    /* Title aligned to the left */
    .post-title {
        flex: 1;
        text-align: left;
    }

    .post-title a {
        text-decoration: none;
        color: #007bff;
        font-weight: bold;
    }

    .post-title a:hover {
        text-decoration: underline;
    }

    /* Meta aligned to the right */
    .post-meta {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 15px;
        flex-wrap: nowrap;
        text-align: right;
    }

    .post-meta span {
        display: inline-block;
    }

    .post-controls button {
        background: none;
        border: 1px solid #007bff;
        padding: 4px 8px;
        font-size: 0.8em;
        margin-right: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .post-controls button:hover {
        background-color: #007bff;
        color: white;
    }

    /* Pagination styling */
    .pagination {
        text-align: center;
        margin-top: 20px;
        font-size: 0.9em;
    }

    .pagination a {
        text-decoration: none;
        color: #007bff;
        font-size: 1em;
        margin: 0 10px;
    }

    .pagination a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        span.creator {
            display: none;
        }
    }