.facebook-posts-container {
    max-width: 500px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    padding: 10px;
}

.facebook-post {
    border: 1px solid #dddfe2;
    border-radius: 8px;
    margin-bottom: 12px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: none;
    padding: 0;
}

/* Header styling */
.post-header {
    display: flex;
    padding: 12px;
    align-items: center;
}

.user-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid rgba(0,0,0,0.1);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-info strong {
    font-size: 15px;
    color: #050505;
    line-height: 1.2;
}

.user-info span {
    font-size: 13px;
    color: #65676b;
    margin-top: 2px;
}

/* Text content styling */
.post-text {
    padding: 4px 12px 12px;
    font-size: 15px;
    line-height: 1.4;
    color: #050505;
}

.post-text p {
    margin: 0;
}

/* Image styling */
.post-images img {
    width: 100%;
    display: block;
    margin-bottom: 0px;
    border-radius: 0;
    border-top: 1px solid #ebedf0;
}

/* Footer styling */
.post-footer {
    padding: 10px 12px;
    border-top: 1px solid #ebedf0;
    text-align: center;
}

.facebook-link {
    display: inline-block;
    color: #1877f2;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.facebook-link:hover {
    text-decoration: underline;
}