/* Header */
.fbp-header {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 22px;
}

.fbp-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}

/* Spinner */
.fbp-spinner {
    width: 36px;
    height: 36px;
    border: 4px solid #ddd;
    border-top-color: #1877f2;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Buttons */
#fbp-buttons-area {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.fbp-btn-primary,
.fbp-btn-follow {
    padding: 12px 22px;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.fbp-btn-primary {
    background: #1877f2;
    border: none;
}

.fbp-btn-follow {
    background: #42b72a;
}

/* Posts */
.fbp-post {
    background: #fff;
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 22px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
}

.fbp-post-header {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.fbp-avatar-sm {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 12px;
}

.fbp-message {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
}

.fbp-post-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
}

.fbp-view-link {
    color: #1877f2;
    font-weight: 600;
    font-size: 14px;
}
