/*
Theme Name: dreamglasses
Theme URI: https://example.com/dreamglasses
Author: Your Name
Description: A modern, highly responsive WordPress theme styled with Bootstrap 5.3.8.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: dreamglasses
*/

/* Core Custom Theme Utility Styles */
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    gap: 0.25rem;
}
.pagination .page-numbers {
    position: relative;
    display: block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}
.pagination .page-numbers:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}
.pagination .page-numbers.current {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}