/*
Theme Name: HomeReciprs-Replica v2
Theme URI: https://homereciprs.com
Author: Victoria
Author URI: https://google.com
Description: A custom replication of the BetterHomeBase design using Tailwind CSS.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, food, recipe, tailwind
Text Domain: homereciprs-replica
*/

/* 
 * This theme uses Tailwind CSS via CDN for styling.
 * Custom CSS can be added here if needed to override Tailwind defaults. 
 */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Pagination Styles */
.nav-links {
    display: flex !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}
.page-numbers {
    display: inline-block !important;
    padding: 0.5rem 1rem !important;
    border: 1px solid #d1d5db !important;
    border-radius: 0.375rem !important;
    color: #4b5563 !important;
    background-color: #ffffff !important;
    transition: all 0.3s !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}
.page-numbers:hover {
    background-color: #f3f4f6 !important;
    color: #111827 !important;
}
.page-numbers.current {
    background-color: #ea580c !important;
    color: #ffffff !important;
    border-color: #ea580c !important;
}
html.dark .page-numbers {
    border-color: #374151 !important;
    color: #d1d5db !important;
    background-color: #1f2937 !important;
}
html.dark .page-numbers:hover {
    background-color: #4b5563 !important;
    color: #ffffff !important;
}
html.dark .page-numbers.current {
    background-color: #ea580c !important;
    color: #ffffff !important;
    border-color: #ea580c !important;
}
