/* Posts content styling */
.user-posts-container {
    padding: 10px;
}

.user-post-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.user-post-item .post-thumbnail {
    flex: 0 0 100px;
    margin-right: 15px;
}

.user-post-item .post-thumbnail img {
    max-width: 100%;
    height: auto;
}

.user-post-item .post-details {
    flex: 1;
}

.user-post-item h3 {
    margin: 0 0 10px;
}

.user-post-item .post-meta {
    color: #777;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.user-post-item .post-excerpt {
    font-size: 0.95em;
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 3px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
}

.pagination a:hover {
    background: #e5e5e5;
}

.pagination .current {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}