        .mobile_pagination {
            display: none;
        }

        .pool-view-container {
            flex: 1; /* Takes up remaining space in the container */
            padding: 20px; /* Padding inside the right section */
        }

        .post_grid {
            display: grid;
            gap: 16px;
            grid-template-columns: repeat(auto-fill, minmax(200px, auto));
            justify-content: center; /* Centers the grid horizontally */
            align-items: center;    /* centers vertically */
        }

        .post_item {
            text-align: center;
            align-items: center;
            max-width: 100%;
            max-height: 100%;
            justify-content: center;
        }

        .post_preview {
            max-width: 100%;
            max-height: 100%;
            border-radius: 4px;
            align-items: center;    /* centers vertically */
        }

        /* Media query for smaller screens */
        @media (max-width: 768px) {

            .post_grid {
                grid-template-columns: repeat(2, minmax(100px, auto));
            }

            .row.content-row {
                padding: 0;
            }

            .desktop_pagination {
                display: none;
            }

            .mobile_pagination {
                display: inline;
            }

        }