/* --- General Feed Styling --- */
.feed-card {
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s ease-in-out;
}

.feed-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.feed-card .card-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e1e8ed;
}

/* --- Comment & Reply Structure --- */
.comments-section .comment-thread {
    position: relative;
    padding-left: 20px; /* Space for the line */
}

.comments-section .comment-thread > .d-flex {
    margin-top: 15px;
}

.comments-section .comment-reply {
    margin-left: 40px; /* Indent replies */
    padding-left: 20px;
    border-left: 2px solid #e1e8ed;
    margin-top: 15px;
}

.comment-content {
    background-color: #f1f3f5;
    border-radius: 18px;
    padding: 8px 12px;
}

.comment-content p {
    margin-bottom: 0.25rem;
}

.comment-actions a {
    font-size: 0.8rem;
    color: #657786;
    text-decoration: none;
}

.comment-actions a:hover {
    text-decoration: underline;
}

/* --- Like & Comment Buttons --- */
.like-form button,
.comment-btn {
    color: #657786;
    font-weight: bold;
    text-decoration: none;
}

/* --- Pagination Icon Fix --- */
.pagination .page-link i {
    font-size: 0.9rem; /* Adjust this value as needed */
    vertical-align: middle;
}


.like-form button:hover,
.comment-btn:hover {
    color: #1da1f2;
    text-decoration: none;
}

.like-form button .fa-heart {
    color: #e0245e; /* Red for liked */
}
