/* Feed Display */
.feed-container {
    max-width: 650px;
    margin: 0 auto;
}
.feed-post {
    background-color: #111;
    box-shadow: -6px 0px 10px rgba(125, 100, 0, 0.4);
    margin-bottom: 10px;
    padding: 12px 20px;
    border: 1px solid #444;
    border-left: 3px solid #f90;
    border-radius: 6px;
    transition: border-color 0.2s ease;
}
.feed-post:hover {
    border-color: #777;
    border-left-color: #c60;
}
.post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5px;
}
.post-author {
    font-weight: bold;
    color: #f90;
    text-decoration: none;
}
.post-author:hover {
    text-decoration: underline;
}
.post-timestamp {
    color: #777;
    font-size: 12px;
}
.post-media {
    margin-top: 5px;
    padding-top: 12px;
    border-top: 0px solid #333;
}
.post-image,
.post-video {
    max-width: 25vh;
    border-radius: 8px;
}
.post-content {
    text-align: left;
    color: #eee;
    font-size: 15px;
    line-height: 1.5;
    margin: 10px 0;
    padding: 15px 0;
    border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
    white-space: pre-line;
    word-break: break-word; /* Prevents long text from breaking layout */
}

/* Feed Post Actions Bar */
.post-actions {
    display: flex;
    gap: 15px;
    padding: 5px 0;
}
.post-action-btn {
    background: transparent;
    border: none;
    color: #aaaaaa;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.post-action-btn:hover {
    color: #ff9900;
    background-color: #1a1a1a;
}
.post-action-btn i { font-size: 16px; }
/* Responsive Scaling */
@media (max-width: 480px) {
    .feed-container {
        padding: 5px 0;
    }
    .feed-post, .post-composer {
        border-radius: 4px;
        padding: 12px;
    }
}

.card-action-btn.liked .ion-heart {
    color: #ff0000;
}

.post-action-btn.liked .ion-heart {
    color: #ff0000;
}