/* Blog Page Custom Styles */
.pagination-wrapper {
    margin-top: 30px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    padding: 10px 15px;
    color: #007bff;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination .page-item.active .page-link {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination .page-item.disabled .page-link {
    color: #ccc;
    cursor: not-allowed;
}

.no-blogs {
    padding: 50px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
}

.no-blogs h3 {
    color: #333;
    margin-bottom: 15px;
}

.no-blogs p {
    color: #666;
    margin: 0;
}

/* Blog card hover effects */
.blog-author-boxarea {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-author-boxarea:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Search form enhancements */
.search-area form {
    position: relative;
}

.search-area input[type="text"] {
    padding-right: 50px;
}

.search-area button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: none;
    background: #007bff;
    color: white;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.search-area button:hover {
    background: #0056b3;
}

/* Category links styling */
.categories-area ul li a:hover {
    color: #007bff;
    padding-left: 10px;
    transition: all 0.3s ease;
}

/* Recent posts styling improvements */
.post-auhtor-area {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post-auhtor-area:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
