.fb-layout {
    max-width: 680px;
    margin: auto;
    padding: 10px;
}

.fb-card {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
    padding: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* STATUS */
.status-box input {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    margin-left: 10px;
    background: #f0f2f5;
}

/* POST */
.post-header {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.post-time {
    font-size: 12px;
    color: #777;
}

.post-content {
    margin: 8px 0;
    font-size: 15px;
}

.post-image img {
    width: 100%;
    border-radius: 8px;
    margin-top: 5px;
}

/* FOOTER */
.post-footer {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
}

.post-action {
    display: flex;
    border-top: 1px solid #eee;
    margin-top: 8px;
}

.post-action button {
    flex: 1;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-weight: 500;
}

.post-action button:hover {
    background: #f0f2f5;
}

/* MOBILE */
@media (max-width: 576px) {
    .fb-layout {
        padding: 5px;
    }
}

body{background:#f0f2f5}
.fb-layout{max-width:680px;margin:auto;padding:10px}
.fb-card{background:#fff;border-radius:8px;margin-bottom:12px;
box-shadow:0 1px 2px rgba(0,0,0,.1);padding:12px}

.avatar{width:40px;height:40px;border-radius:50%}
.status-header{display:flex;gap:10px}
.status-input{flex:1;border-radius:20px;border:1px solid #ddd;
padding:10px;background:#f0f2f5;text-decoration:none;color:#555}

.post-header{display:flex;gap:10px}
.post-time{font-size:12px;color:#777}
.post-content{margin:10px 0}

.post-image img{width:100%;border-radius:8px;margin-top:5px}

.post-footer{display:flex;justify-content:space-between;
font-size:14px;color:#555}

.post-action{display:flex;border-top:1px solid #eee;margin-top:8px}
.btn-action{flex:1;border:none;background:none;padding:8px;cursor:pointer}
.btn-action:hover{background:#f0f2f5}
.btn-action.active{color:#1877f2;font-weight:bold}

@media(max-width:576px){
.fb-layout{padding:5px}
}

