/**
 * @package     ServiceStatus
 * @subpackage  com_servicestatus
 * @copyright   Copyright (C) 2025, All rights reserved.
 * @license     GNU General Public License version 2 or later
 */

/**
 * Pagination Styling for Service Status Component
 * 
 * This file contains custom pagination styling that overrides Bootstrap's
 * default pagination variables. It's safe from Joomla/plugin updates.
 * 
 * Color Customization:
 * To change pagination colors, simply modify the CSS variable values below.
 * 
 * Note: Bootstrap defines pagination variables on the .pagination class,
 * not on :root, so we must override them at the same specificity level.
 * 
 * Default Color: #0070b4 (Primary Blue)
 */

.pagination {
    /* Active state (current page) - Background and border */
    --bs-pagination-active-bg: #0070b4;
    --bs-pagination-active-border-color: #0070b4;
    
    /* Link color (non-active pages) */
    --bs-pagination-color: #0070b4;
}
