
            .feed { display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%;}
            .post-card { background: white; width: 100%; max-width: 500px; border-radius: 8px; box-shadow: 0 1px 2px rgba(0,0,0,0.2); margin:auto;}
            .post-header { display: flex; align-items: center; padding: 12px 16px; }
            .avatar { width: 40px; height: 40px; border-radius: 50%; margin-right: 12px; }
            .author-info { display: flex; flex-direction: column; }
            .author-name { font-weight: 600; color: #050505; }
            .timestamp { font-size: 0.8rem; color: #65676b; }
            .post-body { padding: 4px 16px 16px 16px; color: #050505; line-height: 1.4; }
            .read-more { color: #65676b; font-weight: 600; cursor: pointer; }
            .show-less { color: #65676b; font-weight: 600; cursor: pointer; }
            .tags-container { margin-top: 8px; }
            .tag { color: #0a66c2; text-decoration: none; font-weight: 500; margin-right: 5px; }
            .media-container { width: 100%; background-color: white; }
            .media-grid-link { text-decoration: none; display: block; }
            .media-grid { display: grid; gap: 2px; }
            .media-grid img, .media-grid video { width: 100%; height: 100%; object-fit: cover; display: block; }
            .media-item { position: relative; }
            .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); color: white; display: grid; place-items: center; font-size: 3em; font-weight: bold; }
            /* Grid Layouts */
            .media-grid[data-count="1"] { grid-template-columns: 1fr; max-height: 500px; }
            .media-grid[data-count="1"] img, .media-grid[data-count="1"] video { object-fit: contain; }
            .media-grid[data-count="2"] { grid-template-columns: 1fr 1fr; aspect-ratio: 16/9; }
            .media-grid[data-count="3"] { grid-template-columns: 2fr 1fr; aspect-ratio: 4/3; }
            .media-grid[data-count="4"], .media-grid[data-count="5"] { grid-template-columns: 1fr 1fr; aspect-ratio: 1/1; }
            .post-stats { display: flex; justify-content: space-between; padding: 10px 16px; font-size: 0.9rem; color: #65676b; }
            .post-footer { display: flex; justify-content: space-around; padding: 4px 16px; border-top: 1px solid #dddfe2; }
            .footer-action { flex: 1; text-align: center; padding: 8px; border-radius: 6px; cursor: pointer; color: #65676b; font-weight: 600; }
            .footer-action:hover { background-color: #f0f2f5; }
.footer-action.liked {
    color: #a23fff;
    font-weight: bold;
}

.comments-section {
    display: none; /* Hidden by default */
    padding: 10px 16px;
    border-top: 1px solid #dddfe2;
}

.comments-section.visible {
    display: block; /* Class to show the sections */
}


.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.comment-form button {
    background-color: #1877f2;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}