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

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

.pagination-wrapper .page-numbers li {
    margin: 0;
}

.pagination-wrapper .page-numbers a,
.pagination-wrapper .page-numbers span {
    display: inline-block;
    padding: 10px 5px;
    min-width: 40px;
    text-align: center;
    <<<<<<< HEAD background: #f8f9fa;
    =======background: #F8F9FA;
    >>>>>>>f20e53d2790790fd154a9c1535cb9da270696c5d color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers a:hover {
    background: #007cba;
    color: white;
}

.pagination-wrapper .page-numbers .current {
    background: #007cba;
    color: white;
}

.error-404-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.error-404-content {
    padding: 40px 0;
}

.error-number h1 {
    font-size: 120px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-message h2 {
    font-size: 36px;
    color: #ffffff;
    margin: 20px 0 15px;
    font-weight: 600;
}

.error-message p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-actions {
    margin: 30px 0;
}

.error-actions .btn {
    margin: 0 10px 10px;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #007cba;
    color: white;
    border: 2px solid #007cba;
}

.btn-primary:hover {
    background: #005a87;
    border-color: #005a87;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    background: transparent;
    color: #666;
    border: 2px solid #666;
}

.btn-outline-secondary:hover {
    background: #666;
    color: white;
    transform: translateY(-2px);
}


.blog_listing .page-numbers {
    color: white;
}

.blog_listing .page-numbers li span {

    background: linear-gradient(90deg, #3ed2ff 0%, #2e6cff 100%) !important;
}

.blog_listing .page-numbers li span:hover,
.blog_listing .page-numbers li a:hover {

    background: linear-gradient(90deg, #3ed2ff 0%, #2e6cff 100%) !important;

}



/* Responsive Design */
@media (max-width: 768px) {
    .error-number h1 {
        font-size: 80px;
    }

    .error-message h2 {
        font-size: 28px;
    }

    .error-actions .btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }

}