/*
Theme Name: WPStack
Theme URI: https://www.wpstack.com/
Author: WPStack
Author URI: https://www.wpstack.com/
GitHub Theme URI: https://www.wpstack.com/
Description: The renowned WordPress starter theme framework that combined Underscores and Bootstrap. Trusted by more than 100,000 developers for building handcrafted, custom WordPress sites.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 5.8
Requires PHP: 5.2
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: wpstack
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, theme-options, translation-ready

wpstack WordPress Theme, (C) 2024
wpstack is distributed under the terms of the GNU GPL.

*/

.vc_row.wpb_row.vc_row-fluid {
    margin: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Pagination Container */
.pagination {
    list-style: none; /* Removes bullet points */
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center; /* Centers the pagination links */
    flex-wrap: wrap; /* Allows links to wrap on smaller screens */
    gap: 5px; /* Adds space between each link */
}

/* Individual Page Item */
.pagination .page-item {
    display: inline-block;
}

/* Link and Span Styles */
.pagination .page-link,
.pagination .page-item .current {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover and Focus State */
.pagination .page-link:hover,
.pagination .page-link:focus {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

/* Active/Current Page Style */
.pagination .page-item.active .page-link.current,
.pagination .page-item.active .page-link {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

/* Disabled or non-linked "prev" button style (optional) */
.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #e9ecef;
    cursor: not-allowed;
}

.pagination .page-item a,
.pagination .page-item span {
    font-size: 14px;
}

